prompt
stringlengths
5
231
response
stringlengths
1
231
Reset the prompt to the default setting:
prompt
Set a specific prompt:
prompt {{prompt}}
Change the prompt to show the current date first:
prompt $D $P$G
Change the prompt to show the current time first:
prompt $T $P$G
Change the prompt by adding a specific text first:
prompt {{text}} $P$G
Display a list of pinned packages and their versions:
choco pin list
Pin a package at its current version:
choco pin add --name {{package}}
Pin a package at a specific version:
choco pin add --name {{package}} --version {{version}}
Remove a pin for a specific package:
choco pin remove --name {{package}}
Display the label and serial number for the current drive:
vol
Display the label and serial number for a specific volume:
vol {{D:}}
Terminate the current session:
logoff
Terminate a session by its name or ID:
logoff {{session_name|session_id}}
Terminate a session on a specific server connected through RDP:
logoff {{session_name|session_id}} /server:{{servername}}
Render markdown to console from a file:
Show-Markdown -Path {{path\to\file}}
Render markdown to console from string:
"{{# Markdown content}}" | Show-Markdown
Open Markdown file in a browser:
Show-Markdown -Path {{path\to\file}} -UseBrowser