Skip to content

Commit 550f655

Browse files
committed
December 2023 update
1 parent 23785aa commit 550f655

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Code snippets/Functions library.psm1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ function Unregister-ScheduledTaskEx {
4848
Extremly dangerous. Use with caution.
4949
.EXAMPLE
5050
PS C:\> Unregister-ScheduledTaskEx -TaskNameEx "AppThatIJustUninstalled_User.*"
51+
5152
Removes scheduled tasks whose names begins with "AppThatIJustUninstalled_User."
5253
.INPUTS
5354
None
@@ -83,6 +84,7 @@ function Remove-RegistryValue {
8384
Removes one or more specified values from a given path in Windows Registry, if they exist. Remains silent if they don't exist. Generates a warning in the even of other problems.
8485
.EXAMPLE
8586
PS C:\> Remove-RegistryValues -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "AppThatIJustUninstalled-TrayIcon", "AppThatIJustUninstalled-Updater"
87+
8688
Opens the "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" path of Windows Registry, looks for two values: "AppThatIJustUninstalled-TrayIcon", "AppThatIJustUninstalled-Updater". If they exist, deletes them.
8789
.INPUTS
8890
None

Security/MpDefinitionPackage/MpDefinitionPackage.psd1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
RootModule = 'MpDefinitionPackage.psm1'
1313

1414
# Version number of this module.
15-
# Update this only when you are publishing
1615
ModuleVersion = '1.0'
1716

1817
# Supported PSEditions
@@ -25,10 +24,10 @@ GUID = 'f0061b7e-c590-449e-89e4-0af5d48fd859'
2524
Author = 'github.com/skycommand'
2625

2726
# Company or vendor of this module
28-
CompanyName = 'Unknown'
27+
CompanyName = 'None'
2928

3029
# Copyright statement for this module
31-
Copyright = '(C) github.com/skycommand. Expat license.'
30+
Copyright = '(C) 2020 github.com/skycommand. MIT license.'
3231

3332
# Description of the functionality provided by this module
3433
# Description = ''

0 commit comments

Comments
 (0)