You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PainKiller.PowerCommands/Core/PainKiller.PowerCommands.Core/Commands/CdCommand.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,11 @@
5
5
options:"bookmark|roaming",
6
6
disableProxyOutput:true,
7
7
example:"//View current working directory|cd|//Traverse down one directory|//Change working directory|cd ..|cd \"C:\\ProgramData\"|//Set bookmark as the working directory using name|cd --bookmark program|//Set bookmark as the working directory using index|cd --bookmark 0|//Set first existing bookmark (if any) as working directory|cd --bookmark")]
example:"//Show all commands|commands|//Show your custom commands|commands --this|//Show reserved commands|commands --reserved|//Search for commands matching \"encrypt\"|commands \"encrypt\"|//Show default command|commands --default|//Update the dir command (command must exist in the configured PowerCommands project)|commands --update dir|//Add a proxy|commands --add-proxy")]
Copy file name to clipboardExpand all lines: src/PainKiller.PowerCommands/Core/PainKiller.PowerCommands.Core/Commands/DirCommand.cs
+1-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,8 @@
3
3
[PowerCommandDesign(description:"List the content of the working directory or this applications app directory, with the option to open the directory with the File explorer ",
4
4
options:"open|app",
5
5
example:"//List the content and open the current working directory|dir --open|//Open the AppData roaming directory|dir --app --open")]
Copy file name to clipboardExpand all lines: src/PainKiller.PowerCommands/Core/PainKiller.PowerCommands.Core/Commands/LogCommand.cs
+1-3
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,8 @@
6
6
suggestions:"view|archive",
7
7
disableProxyOutput:true,
8
8
example:"//View a list with all the logfiles|log|//Archive the logs into a zip file.|log archive|//View content of the current log|log view|//Filter the log show only posts matching the provided process tag, this requires that you are using process tags when logging in your command(s).|log --process created")]
Copy file name to clipboardExpand all lines: src/PainKiller.PowerCommands/Core/PainKiller.PowerCommands.Core/Commands/PowerCommandCommand.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@
7
7
quotes:"<path>",
8
8
disableProxyOutput:true,
9
9
example:"//create new VS solution|powercommand new --solution testproject --output \"C:\\Temp\\\"|//Create new PowerCommand named Demo|powercommand new --command Demo|//Update powercommands core, this will first delete current Core projects and than apply the new Core projects|powercommand update|//Only update template(s)|powercommand update --templates|//Update with backup|powercommand update --backup|//Create a new command|powercommand new --command MyNewCommand")]
Copy file name to clipboardExpand all lines: src/PainKiller.PowerCommands/Core/PainKiller.PowerCommands.Core/Commands/ProxyCommando.cs
+5-16
Original file line number
Diff line number
Diff line change
@@ -4,27 +4,16 @@
4
4
options:"retry-interval-seconds|no-quit",
5
5
example:"//Use the retry-interval-seconds option to decide how long pause it should be between retries|//\nUse the --no-quit option to tell the proxy application to not quit after the command is run.",
example:"//View all declared secrets|secret|secret --create \"mycommand-pass\"|secret --remove \"mycommand-pass\"|//Initialize your machine with a new encryption key (stops if this is already done)|secret --initialize")]
0 commit comments