This PC on Desktop

This PC on Desktop

This powershell script create a shortcut to "This pc" on the desktop.


###

# Enable "This PC" on the desktop
$desktopKeyPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel'
$desktopValueName = '{20D04FE0-3AEA-1069-A2D8-08002B30309D}'
$desktopValue = 0

# Set the registry value
New-Item -Path $desktopKeyPath -Force -ErrorAction SilentlyContinue
Set-ItemProperty -Path $desktopKeyPath -Name $desktopValueName -Value $desktopValue

# Refresh the desktop
Stop-Process -Name explorer -Force

###

To download the command  click here.
Once downlod complete, import it throw the import option in the Custom command section.

For any additional information, please contact support@eprocsolutions.com