Most voted "powershell" questions
The use of the tag must be related to problems with Microsoft Windows Powershell script programming which is a powerful and modern Windows command "prompt", aimed at automation and maintenance of systems by administrators.
Learn more…102 questions
Sort by count of
-
-2
votes0
answers11
viewsDelete user folder via Access Denied script
Good afternoon! I am trying to run a script to delete all user folders in C: Users The script: Get-Childitem "C: Users" -recurse -Include . | Where-Object {$_. psIsContainer -eq $true} | remove-item…
-
-3
votes0
answers59
viewsHow to create script that allows USB stick in Windows by Serial Number?
I would like to exchange some practical ideas with you to accomplish an achievement: Create a script for Windows that checks the Serial Number of a USB stick and can thus allow or deny that it…