Blog

QTZ – To the point solutions

Virtual Apps and Desktops Service on Citrix Cloud Certified (CC-VAD-CC)

Below questions might help you in clearing Virtual Apps and Desktops Service on Citrix Cloud Certification (CC-VAD-CC) exam. You will get two attempts and will have 53 questions. Course to complete is CXD-250 (Moving to the Citrix Virtual Apps and Desktops Service on Citrix Cloud). Kindly note that these are not Dumps and only created to help…

Citrix SCCM Integration

You will find tons of article on Internet and even on Citrix docs which states to simply install SCCM Client on Citrix Master/Golden image and your work is done. In reality its not the case. Below is the fix. Copy paste below highlighted on elevated cmd prompt and freeze Master Image. SMS Host Service -…

Move Files using Powershell

Below Powershell script will move all files from source to destination. Can be used as archival job. Just copy paste below script and edit yellow highlighted text as per your environment and get it working. $Date=(Get-Date).AddDays(-90).Date$Source = “D:\Test*.*”$Destination = “\share_location\TestFolder$”Foreach($file in (Get-ChildItem $Source)){If($file.LastWriteTime -lt $Date){Move-Item -Path $file.fullname -Destination $Destination}}Send-MailMessage -From From_address -To To_address -Subject “Archive…

Delete Inactive FSLogix Profiles

Below Powershell script will delete all Inactive FSLogix profiles configured and send email of profiles deleted and space saved. Just copy paste below script and edit yellow highlighted text as per your environment and get it working. $Date=(Get-Date).AddDays(-90)$FormatDate = Get-Date -Format dd-MM-yyyy$vhds=Get-ChildItem –Path “mention_profile_location” -Recurse | Where-Object {$_.Name -like “*.vhd”} | where-object {($_.LastWriteTime -lt $Date)}…

FSLogix Profiles Reporting

Below Powershell script will report all FSLogix profiles configured in environment. Just copy paste below script and edit yellow highlighted text as per your environment and get it working. $Date=(Get-Date).AddDays(-30)$FormatDate = Get-Date -Format dd-MM-yyyy$vhds=Get-ChildItem –Path “mention_profile_location” -Recurse | Where-Object {$_.Name -like “*.vhd”} | where-object {($_.LastWriteTime -lt $Date)} ForEach($VHD in $VHDs){If($VHD.LastWriteTime -lt $Date){$VHDLWT = Get-Date $VHD.LastWriteTime…


Follow My Blog

Get new content delivered directly to your inbox.

Design a site like this with WordPress.com
Get started