Utilizar Powershell para eliminar el archivo
Utilizar Powershell para eliminar el archivo
Uso de commnads de PowerShell para eliminar un archivo
# Uso de commnads de PowerShell para eliminar un archivo
Remove-Item -Path "C:\test\TestFile.txt"
También puede usar caracteres comodín '*' para quitar varios elementos.
Por ejemplo, este comando elimina todos los archivos en C: \ test: con extensión .txt.
# Uso de commnads de PowerShell para eliminar todos los archivos
# con extensión .txt
Remove-Item -Path "C:\test\*.txt"
Aquí también puede utilizar el comando -Force para eliminar todos los archivos del directorio -Force
# Uso de commnads de PowerShell para borrar totalmente la fuerza del
# archivo
Remove-Item -Path "C:\test\*.*" -Force
Aquí también puede utilizar el comando -Force para eliminar todos los archivos y carpetas -recurrir
# Uso de commnads de PowerShell para eliminar
# todos los archivos y carpetas
Remove-Item -Path "C:\test\*.*" -recurse
First script - PowerShell
We create the first script in powershell
Create a new file named first script.ps1
Write-Host "Hello, World!" |
Save the file and open PowerShell window.
There are 4 settings of policies:
-
Restricted – Scripts won’t run. Period. (Default setting)
-
RemoteSigned – Locally-created scripts will run. Scripts that were created on another machine will not run unless they are signed by a trusted publisher.
-
AllSigned – Scripts will only run if signed by a trusted publisher (including locally-created scripts).
-
Unrestricted – All scripts will run regardless of who created them and whether or not they are signed.
We change policies RemoteSigned
Set-ExecutionPolicy RemoteSigned
correct syntax to run the script
& "c:\folder\script.ps1
c:\folder\script.ps1
incorrect syntax to run the script
PS C:\folder> script.ps1
writing scripts Powershell
writing scripts Powershell
Powershell scripts written as a text file with the extension .ps1. Run the script from the PowerShell console:
Run PS script:
write full path PS C:\windows\script\test_script.ps1