-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Remove-Old-Modules script (#5)
* Updated remove-old-modules with params added a module-name param to specify a single module to remove added an -includeAll param that will grab all modules like the default is in older versions. no params will now give message to included a module -help param gives quick help added support for get-help * update readme with info on new parameters for the remove-old-modules script
- Loading branch information
1 parent
f6a4f92
commit 34baf6e
Showing
3 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Powershell: Launch Current File w/ Params", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"script": "${file}", | ||
"args": ["fasf"], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"name": "PowerShell: Launch Current File", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"script": "${file}", | ||
"cwd": "${file}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters