psutils icon indicating copy to clipboard operation
psutils copied to clipboard

Command line utilities written in Powershell

Results 33 psutils issues
Sort by recently updated
recently updated
newest added

Sudo uses a fixed entry point for powershell instance: https://github.com/lukesampson/psutils/blob/master/sudo.ps1#L62 Could this be customizable?

Most function did not adopt powershell standard: 1. not using standard verbs (you can get via command Get-Verb) 2. powershell function usually consists of - (like start-process, get-childItem) 3. uses...

try this: ``` powershell New-Item -ItemType SymbolicLink ``` see this link: https://technet.microsoft.com/en-us/library/hh849795.aspx?f=255&MSPPError=-2147217396 for more detail.

That really kills a console session. You're typing away and have to sudo something ``` text PS> sudo foo ``` But the UAC dialog appears under your window or on...

I don't know what it is, but `sudo` hangs on one of my machines. I don't get any info and don't know what else to tell you. Sorry :( Details...

bug

This implementation of `su` simply runs `sudo powershell`. It would be better if the elevated shell remains consistent with original shell, but I lack necessary knowledge of Powershell programming to...

I tried to install the [`time` package](https://github.com/ScoopInstaller/Main/blob/master/bucket/time.json) from this repository via the [scoop installer](https://scoop.sh/#/apps?q=time) But the installation failed in Windows 11 When i tried to rerun `scoop install time` this...

When I start a batch job with sudo, terminating it will cause the shell to hang. It terminates but then the terminal gets all messed up, things are printed in...

Replacing aliases with their full proper names to make auditing and comprehension of code easier for users.

This PR adds support for the "--force" argument, which will first remove the target file, if present. The usage of the more explicit "--symbolic", instead of just "-s" is also...