Skip to content

Commit 242e16d

Browse files
committed
ss
1 parent 76c1921 commit 242e16d

15 files changed

Lines changed: 0 additions & 63 deletions

PSConfigFile/Public/Add-CommandToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ Adds a script block named 'DriveC' that lists the contents of the C drive every
7070
Add-CommandToPSConfigFile -ScriptBlockName Startup -ScriptBlock "Write-Host 'Welcome!'" -Force
7171
Adds a script block named 'Startup' that displays a welcome message, overwriting the config file if it exists.
7272
73-
.NOTES
74-
Author: Pierre Smit
75-
Website: https://smitpi.github.io/PSConfigFile
76-
This function is part of the PSConfigFile module for managing PowerShell configuration automation.
7773
#>
7874
function Add-CommandToPSConfigFile {
7975
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-CommandToPSConfigFile')]

PSConfigFile/Public/Add-CredentialToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ Prompts for credentials and saves them securely in the config file under the nam
6868
Add-CredentialToPSConfigFile -Name AdminUser -Credential (Get-Credential) -Force
6969
Saves a credential named 'AdminUser', overwriting the config file if it exists.
7070
71-
.NOTES
72-
Author: Pierre Smit
73-
Website: https://smitpi.github.io/PSConfigFile
74-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Credentials are encrypted using a self-signed certificate for security and portability.
7571
#>
7672
function Add-CredentialToPSConfigFile {
7773
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-CredentialToPSConfigFile')]

PSConfigFile/Public/Add-FunctionToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ Adds a function named 'psml' that imports all PowerShell modules in the current
7373
Add-FunctionToPSConfigFile -FunctionName CleanLogs -CommandToRun "Remove-Item C:\\Logs\\* -Recurse -Force" -Force
7474
Adds a function named 'CleanLogs' to delete all log files, overwriting the config file if it exists.
7575
76-
.NOTES
77-
Author: Pierre Smit
78-
Website: https://smitpi.github.io/PSConfigFile
79-
This function is part of the PSConfigFile module for managing PowerShell configuration automation.
8076
#>
8177
function Add-FunctionToPSConfigFile {
8278
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-FunctionToPSConfigFile')]

PSConfigFile/Public/Add-LocationToPSConfigFile.ps1

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,6 @@ Sets the default location to the 'temp' PSDrive when the config is invoked.
7171
Add-LocationToPSConfigFile -FolderPath C:\temp
7272
Sets the default location to the 'C:\temp' folder when the config is invoked.
7373
74-
.NOTES
75-
Author: Pierre Smit
76-
Website: https://smitpi.github.io/PSConfigFile
77-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Use this to ensure your PowerShell session always starts in the correct directory or drive.
78-
79-
.LINK
80-
https://smitpi.github.io/PSConfigFile/Add-LocationToPSConfigFile
8174
#>
8275

8376
function Add-LocationToPSConfigFile {

PSConfigFile/Public/Add-PSDefaultParameterToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ Sets a default value for the 'PSLauncherConfigFile' parameter of the 'Start-PSLa
6868
Add-PSDefaultParameterToPSConfigFile -Function *-Item -Parameter Path -Value C:\\Data -Force
6969
Sets a default 'Path' for all functions ending with '-Item', overwriting the config file if it exists.
7070
71-
.NOTES
72-
Author: Pierre Smit
73-
Website: https://smitpi.github.io/PSConfigFile
74-
Use this to streamline your PowerShell workflow with persistent default parameters.
7571
#>
7672
function Add-PSDefaultParameterToPSConfigFile {
7773
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-PSDefaultParameterToPSConfigFile')]

PSConfigFile/Public/Add-PSDriveToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ Registers the 'TempDir' PSDrive in the config file for automatic use in future s
7070
Add-PSDriveToPSConfigFile -DriveName ProdModules -Force
7171
Adds the 'ProdModules' PSDrive, overwriting the config file if it exists.
7272
73-
.NOTES
74-
Author: Pierre Smit
75-
Website: https://smitpi.github.io/PSConfigFile
76-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Use this to ensure custom drives are always available in your PowerShell environment.
7773
#>
7874
function Add-PSDriveToPSConfigFile {
7975
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-PSDriveToPSConfigFile')]

PSConfigFile/Public/Add-VariableToPSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ Adds the 'AzureToken' variable to the config file for automatic import in future
6363
Add-VariableToPSConfigFile -VariableNames Path1,Path2 -Force
6464
Adds both 'Path1' and 'Path2' variables, overwriting the config file if it exists.
6565
66-
.NOTES
67-
Author: Pierre Smit
68-
Website: https://smitpi.github.io/PSConfigFile
69-
Use this to persist important variables between PowerShell sessions.
7066
#>
7167
function Add-VariableToPSConfigFile {
7268
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Add-VariableToPSConfigFile')]

PSConfigFile/Public/Export-PSConfigFilePFX.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ $creds = Get-Credential
6060
Export-PSConfigFilePFX -Path C:\temp -Credential $creds
6161
Exports the certificate to C:\temp, protected by the provided credentials.
6262
63-
.NOTES
64-
Author: Pierre Smit
65-
Website: https://smitpi.github.io/PSConfigFile
66-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Use this to securely transfer your credential encryption certificate to other systems.
6763
#>
6864
function Export-PSConfigFilePFX {
6965
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Export-PSConfigFilePFX')]

PSConfigFile/Public/Import-PSConfigFilePFX.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ Imports the certificate from C:\temp, using the provided credentials for decrypt
6767
Import-PSConfigFilePFX -Path .\PSConfigFileCert.pfx -Credential (Get-Credential) -Force
6868
Imports and overwrites any existing certificate with the same name.
6969
70-
.NOTES
71-
Author: Pierre Smit
72-
Website: https://smitpi.github.io/PSConfigFile
73-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Use this to restore credential decryption capability on new or rebuilt systems.
7470
#>
7571
function Import-PSConfigFilePFX {
7672
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Import-PSConfigFilePFX')]

PSConfigFile/Public/Invoke-PSConfigFile.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ Loads and applies all settings from the specified config file.
6868
Invoke-PSConfigFile -ConfigFile .\PSConfigFile.xml -DisplayOutput
6969
Runs the config file and displays detailed output for each step.
7070
71-
.NOTES
72-
Author: Pierre Smit
73-
Website: https://smitpi.github.io/PSConfigFile
74-
This function is part of the PSConfigFile module for managing PowerShell configuration automation. Use this to automate and standardize your PowerShell environment setup.
7571
#>
7672
function Invoke-PSConfigFile {
7773
[Cmdletbinding(HelpURI = 'https://smitpi.github.io/PSConfigFile/Invoke-PSConfigFile')]

0 commit comments

Comments
 (0)