powershell-script icon indicating copy to clipboard operation
powershell-script copied to clipboard

A Crate for running Windows PowerShell scripts

Results 5 powershell-script issues
Sort by recently updated
recently updated
newest added

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`: ![image](https://github.com/cfsamson/powershell-script/assets/84739019/93b954a3-31d1-46b6-a35a-8791c072735c)...

enhancement

Hey, there powershell supports for custom `ps1` file to load at startup using flag `-PSConsoleFile` which would be beneficial

enhancement

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...

enhancement

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" ```...

help wanted

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....