This repository has been archived on 2020-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
control-ad/scripts/misc/remove-public-desktop-icons...

13 lines
376 B
PowerShell

function Remove-Public-Desktop-Icons
{
$computername = Read-Host 'Enter the name of the computer'
Remove-Item \\$computername\c$\users\public\desktop\*.lnk `
-Exclude "SAP Logon Pad.lnk"
Write-Host
Write-Host 'Desktop icons removed' -backgroundcolor green
Write-Host
Read-Host 'Press a key to continue'
}
Remove-Public-Desktop-Icons