python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Powershell script using start-process and piping out-file to text file, not working, produces blank text file
This is my first question on SO so here goes!
I'm getting started with a simple powershell script that I intend to use to benchmark some archiving software.
I want to run the archiver (7-zip on Window...
Zcehtro
Votes: 0
Answers: 1
Powershell: Start-Process with an argument
I want to start a setup.exe with one install parameter => /download example.xml
When I tpye in "C:\Temp\folder\setup.exe /download example.xml" in Windows Explorer Address Bar the setup....
user18209625
Votes: 0
Answers: 1
PowerShell: waiting for output redirect file to unlock after killing process
I have a PowerShell script that:
Starts a new process and redirects the output to two files
Waits with a timeout for the process to complete
Kills the process if it timed out
Reads the contents from ...
Jordan
Votes: 0
Answers: 0
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