python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Script calls other script as .ps1 but not as a .exe using ps2exe
$password = ConvertTo-SecureString “Password+++” -AsPlainText -Force
$Cred = New-Object System.Management.Automation.PSCredential ("Admin", $password)
$FileLocale = Split-Path -Parent -Path ...
Black_n_White
Votes: 0
Answers: 1
Can anyone help me create a progress bar in powershell while the script is running?
I've already tested Write-Progress, and when I put it multiple times along with a "Start-Sleep -Milliseconds 250" it seems to work perfectly, but when I try to implement it in my script, whe...
AegisShimon
Votes: 0
Answers: 0