Citrix - Office 365 Randomly Asks Users to Reactivate

It might happen that, on Citrix Environment, users may be prompted, randomly, about Office 365, license reactivating necessity.

This Citrix Article well explain on how to fix this behavior, key point is adding some folders that must be synchronized on yours profile server. (when user login/loggoff)

https://support.citrix.com/article/CTX227286



Scripting - File Server migration using robocopy command

In the past we managed 2008 to 2016 migration and so I am taking note about robocopy syntax that it was useful during this project. (focused on file servers migration)

Approach was replicating root folder on new server, enabling share (on new server), stopping old share folder and finally launching this command (from old file  server) for final folder synchronization.

robocopy local_drive:\localfoldername \\remote_server\remote_share_name /E /COPYALL /SEC /MIR /ZB /W:1 /R:1 /LOG:C:\locallogfolder\SYNC_OLDSERVER_VS_NEWSERVER_DATE_TIME.LOG /TEE 

/SEC it replicate security permissions

/Tee it enable video logging real time display

/SECFIX it fix security permissions

Meanwhile I am adding  old blog articles links:

Backup - Robocopy and real time monitoring of any file changes

https://www.alessandromazzanti.com/2016/09/backup-robocopy-and-real-time.html

Scritping - Using robocopy to replicate files to remote location on scheduled tasks and sending final log and status email

https://www.alessandromazzanti.com/2014/01/scritping-use-robocopy-to-replicate.html

Backup – Lista dei comandi di Robocopy

https://www.alessandromazzanti.com/2013/02/backup-lista-dei-comandi-di-robocopy.html

Tips - How to migrate file server share and permissions

https://www.alessandromazzanti.com/2015/11/tips-how-to-migrate-file-server-share.html

Scripting - Inviare una mail da riga di comando in windows

https://www.alessandromazzanti.com/2011/01/inviare-una-mail-da-riga-di-comando-in.html

Veeam - How to restore all your infrastructure having only Veeam Backups

I am taking note about an interesting article that simple explain on how proceeding to restore your all infrastructure having only Veeam Backups available.

https://www.veeam.com/blog/restoring-infrastructure-from-scratch-with-veeam.html

Tips - Windows 10 /Outlook Emoticons shortcuts

 There is an easy and quick way to insert Emoticons using Windows 10/Outlook.

You simply need to press


 Windows button in conjunction with . (DOT/period button) 








Script - How to enumerate/export, to .CSV, shared Folder/Subfolders Security permissions

It is important to verify shared folder permissions to find any misconfiguration.

I found an interesting script that easily enumerates all shared folders and it creates a .csv file (for reporting purposes).

Here it is relative script and link:

https://social.technet.microsoft.com/wiki/contents/articles/51422.how-to-export-folder-permissions-to-excel-or-csv-file.aspx

This powershell script enumerates all folder and subfolders permissions of a folder and exporting it to ,csv file.


An alternative article (that I did no test)