powershell-script
powershell-script copied to clipboard
A Crate for running Windows PowerShell scripts
Hey there, powershell supports input(s) and output(s) in CLIXML format which can be further used with serde to provide better error in output or success messages. From `powershell -h`: ...
Hey, there powershell supports for custom `ps1` file to load at startup using flag `-PSConsoleFile` which would be beneficial
I am using your crate to package a [powershell script](https://github.com/chmaha/ReaClassical/blob/main/Resource%20Folders/ReaClassical_Win.ps1) that installs my ReaClassical system. As you can see, the original ps1 script includes various Write-Host messages that are helpful...
Is this functionality already built in? Example usage: ```ps1 # CreateFile.ps1 Param ( $Path ) New-Item $Path # Creates a new file at $Path. Write-Host "File $Path was created" ```...
I was looking at issue #11 which was attempted to be fixed with #20. The change wasn't landed because of the difference in launching PowerShell file and a script block....