├── .github ├── CODEOWNERS └── pull_request_template.md ├── CONTRIBUTING.MD ├── Install ├── Autopilot │ ├── Get-IsInProvisioningMode.ps1 │ └── ReadMe.md ├── NotInstalledRequirement │ ├── Get-NotInstalledRequirement.ps1 │ └── ReadMe.md ├── Post-Install │ ├── Add-FirefoxLanguagePacks │ │ ├── Add-FirefoxLanguagePacks.ps1 │ │ └── readme.md │ ├── Cisco AnyConnect Modules and Config Files │ │ ├── Install-CiscoAnyConnectModules.ps1 │ │ └── README.md │ ├── Dell Command Update Import Settings │ │ ├── SettingsImport.ps1 │ │ └── readme.md │ ├── Docker Users Local Group │ │ ├── README.md │ │ └── docker_local_user.ps1 │ ├── Google Chrome Desktop Shortcut │ │ ├── Remove-ChromeShortcut.ps1 │ │ └── readme.md │ ├── Google Chrome Homepage │ │ ├── Set-GoogleChromeHomepage.ps1 │ │ └── readme.md │ ├── New-ScheduledTaskLaunchProcessByPathAsUser │ │ ├── New-ScheduledTaskLaunchProcessByPathAsUser.ps1 │ │ └── README.md │ ├── New-Shortcut │ │ ├── New-Shortcut.Tests.ps1 │ │ ├── New-Shortcut.ps1 │ │ └── README.md │ ├── SparkLabs │ │ └── Viscosity OpenVPN │ │ │ └── Set-ViscosityAutomaticUpdates │ │ │ ├── Set-ViscosityAutomaticUpdates.ps1 │ │ │ └── readme.md │ └── readme.md ├── Pre-Install │ ├── RegisterOracleCodeSigning.ps1 │ ├── Remove-JRE8 │ │ ├── PatchMyPC-Remove-JRE8.ps1 │ │ └── readme.md │ ├── Remove-RemoteDesktopSystemUser │ │ ├── AppDeployToolkit │ │ │ ├── AppDeployToolkitBanner.png │ │ │ ├── AppDeployToolkitConfig.xml │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ ├── AppDeployToolkitHelp.ps1 │ │ │ ├── AppDeployToolkitLogo.ico │ │ │ ├── AppDeployToolkitLogo.png │ │ │ ├── AppDeployToolkitMain.cs │ │ │ └── AppDeployToolkitMain.ps1 │ │ ├── Deploy-Application.exe │ │ ├── Deploy-Application.exe.config │ │ ├── Deploy-Application.ps1 │ │ └── README.md │ ├── Remove-WebexSystemUser │ │ ├── AppDeployToolkit │ │ │ ├── AppDeployToolkitBanner.png │ │ │ ├── AppDeployToolkitConfig.xml │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ ├── AppDeployToolkitHelp.ps1 │ │ │ ├── AppDeployToolkitLogo.ico │ │ │ ├── AppDeployToolkitLogo.png │ │ │ ├── AppDeployToolkitMain.cs │ │ │ └── AppDeployToolkitMain.ps1 │ │ ├── Deploy-Application.exe │ │ ├── Deploy-Application.exe.config │ │ ├── Deploy-Application.ps1 │ │ └── README.md │ └── readme.md └── Requirement │ ├── ReaderDCx64Requirement │ └── readme.md ├── Other ├── Blogs │ ├── Get-SoftwareVersionCompliance.ps1 │ ├── PatchMyPC_GraphSDKWebinar_CodeSnippets.ps1 │ └── complianceAppVersion.json ├── Code Signing │ ├── Import-PMPCAppsTrustedPublisherCertificate.ps1 │ ├── Import-PMPCCloudTrustedPublisherCertificate.ps1 │ ├── PMPCAppsTrustedPublisherCertificate_HealthScript_Detection.ps1 │ ├── PMPCCloudTrustedPublisherCertificate_HealthScript_Detection.ps1 │ └── ReadMe.md ├── ConfigurationManager │ ├── Get-TopSUPname │ │ ├── Get-TopSUPName.ps1 │ │ └── readme.md │ └── Test-SMSProvider │ │ └── Test-SMSProvider.ps1 ├── CustomAppsHelper │ ├── PatchMyPC-CustomAppsHelper.ps1 │ └── readme.md ├── Get-FortiClientVPNOnlineInstaller │ ├── Get-FortiClientVPNOnlineInstaller.ps1 │ └── readme.md ├── Reports │ ├── Get-IntuneReport.ps1 │ ├── Get-PMPCFoundApps.ps1 │ ├── Get-UpdateRingForecast.ps1 │ └── Get-Win32AppRelationships.ps1 └── Timestamping │ └── Test-TimeStamping.ps1 ├── README.md ├── Templates ├── Uninstall-Old-Java │ ├── Uninstall-Java.PS1 │ └── readme.md └── readme.md └── Uninstall ├── Post-Uninstall └── readme.md └── Pre-Uninstall ├── Uninstall VLC Media Player MSI ├── Uninstall-VLCMediaPlayer-MSI.ps1 ├── images │ ├── Cloud-AddCustomPreInstallScript.png │ ├── Cloud-AddCustomPreInstallScript2.png │ ├── Cloud-DeployVLC.png │ ├── Cloud-InstallerTypeVLC.png │ ├── Cloud-RequiredAssignment.png │ ├── Publisher-CM-AddCustomPrePostScript-new.png │ ├── Publisher-Intune-AddCustomPrePostScript-new.png │ └── Publisher-PreScript.png └── readme.md ├── Uninstall-Software ├── Uninstall-Software.Tests.ps1 ├── Uninstall-Software.ps1 └── readme.md └── readme.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @PatchMyPCTeam/pmpc-community-script-maintainers 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /Install/Autopilot/Get-IsInProvisioningMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Autopilot/Get-IsInProvisioningMode.ps1 -------------------------------------------------------------------------------- /Install/Autopilot/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Autopilot/ReadMe.md -------------------------------------------------------------------------------- /Install/NotInstalledRequirement/Get-NotInstalledRequirement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/NotInstalledRequirement/Get-NotInstalledRequirement.ps1 -------------------------------------------------------------------------------- /Install/NotInstalledRequirement/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/NotInstalledRequirement/ReadMe.md -------------------------------------------------------------------------------- /Install/Post-Install/Add-FirefoxLanguagePacks/Add-FirefoxLanguagePacks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Add-FirefoxLanguagePacks/Add-FirefoxLanguagePacks.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Add-FirefoxLanguagePacks/readme.md: -------------------------------------------------------------------------------- 1 | ## More information on this script can be found at -------------------------------------------------------------------------------- /Install/Post-Install/Cisco AnyConnect Modules and Config Files/Install-CiscoAnyConnectModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Cisco AnyConnect Modules and Config Files/Install-CiscoAnyConnectModules.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Cisco AnyConnect Modules and Config Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Cisco AnyConnect Modules and Config Files/README.md -------------------------------------------------------------------------------- /Install/Post-Install/Dell Command Update Import Settings/SettingsImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Dell Command Update Import Settings/SettingsImport.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Dell Command Update Import Settings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Dell Command Update Import Settings/readme.md -------------------------------------------------------------------------------- /Install/Post-Install/Docker Users Local Group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Docker Users Local Group/README.md -------------------------------------------------------------------------------- /Install/Post-Install/Docker Users Local Group/docker_local_user.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Docker Users Local Group/docker_local_user.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Google Chrome Desktop Shortcut/Remove-ChromeShortcut.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Google Chrome Desktop Shortcut/Remove-ChromeShortcut.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Google Chrome Desktop Shortcut/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Google Chrome Desktop Shortcut/readme.md -------------------------------------------------------------------------------- /Install/Post-Install/Google Chrome Homepage/Set-GoogleChromeHomepage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Google Chrome Homepage/Set-GoogleChromeHomepage.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/Google Chrome Homepage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/Google Chrome Homepage/readme.md -------------------------------------------------------------------------------- /Install/Post-Install/New-ScheduledTaskLaunchProcessByPathAsUser/New-ScheduledTaskLaunchProcessByPathAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/New-ScheduledTaskLaunchProcessByPathAsUser/New-ScheduledTaskLaunchProcessByPathAsUser.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/New-ScheduledTaskLaunchProcessByPathAsUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/New-ScheduledTaskLaunchProcessByPathAsUser/README.md -------------------------------------------------------------------------------- /Install/Post-Install/New-Shortcut/New-Shortcut.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/New-Shortcut/New-Shortcut.Tests.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/New-Shortcut/New-Shortcut.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/New-Shortcut/New-Shortcut.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/New-Shortcut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/New-Shortcut/README.md -------------------------------------------------------------------------------- /Install/Post-Install/SparkLabs/Viscosity OpenVPN/Set-ViscosityAutomaticUpdates/Set-ViscosityAutomaticUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/SparkLabs/Viscosity OpenVPN/Set-ViscosityAutomaticUpdates/Set-ViscosityAutomaticUpdates.ps1 -------------------------------------------------------------------------------- /Install/Post-Install/SparkLabs/Viscosity OpenVPN/Set-ViscosityAutomaticUpdates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Post-Install/SparkLabs/Viscosity OpenVPN/Set-ViscosityAutomaticUpdates/readme.md -------------------------------------------------------------------------------- /Install/Post-Install/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Install/Pre-Install/RegisterOracleCodeSigning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/RegisterOracleCodeSigning.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-JRE8/PatchMyPC-Remove-JRE8.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-JRE8/PatchMyPC-Remove-JRE8.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-JRE8/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-JRE8/readme.md -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitBanner.png -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitConfig.xml -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitExtensions.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitHelp.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitLogo.ico -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitLogo.png -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitMain.cs -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitMain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/AppDeployToolkit/AppDeployToolkitMain.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.exe -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.exe.config -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/Deploy-Application.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-RemoteDesktopSystemUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-RemoteDesktopSystemUser/README.md -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitBanner.png -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitConfig.xml -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitExtensions.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitHelp.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitLogo.ico -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitLogo.png -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitMain.cs -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitMain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/AppDeployToolkit/AppDeployToolkitMain.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.exe -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.exe.config -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/Deploy-Application.ps1 -------------------------------------------------------------------------------- /Install/Pre-Install/Remove-WebexSystemUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Pre-Install/Remove-WebexSystemUser/README.md -------------------------------------------------------------------------------- /Install/Pre-Install/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Install/Requirement/ReaderDCx64Requirement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Requirement/ReaderDCx64Requirement -------------------------------------------------------------------------------- /Install/Requirement/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Install/Requirement/readme.md -------------------------------------------------------------------------------- /Other/Blogs/Get-SoftwareVersionCompliance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Blogs/Get-SoftwareVersionCompliance.ps1 -------------------------------------------------------------------------------- /Other/Blogs/PatchMyPC_GraphSDKWebinar_CodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Blogs/PatchMyPC_GraphSDKWebinar_CodeSnippets.ps1 -------------------------------------------------------------------------------- /Other/Blogs/complianceAppVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Blogs/complianceAppVersion.json -------------------------------------------------------------------------------- /Other/Code Signing/Import-PMPCAppsTrustedPublisherCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Code Signing/Import-PMPCAppsTrustedPublisherCertificate.ps1 -------------------------------------------------------------------------------- /Other/Code Signing/Import-PMPCCloudTrustedPublisherCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Code Signing/Import-PMPCCloudTrustedPublisherCertificate.ps1 -------------------------------------------------------------------------------- /Other/Code Signing/PMPCAppsTrustedPublisherCertificate_HealthScript_Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Code Signing/PMPCAppsTrustedPublisherCertificate_HealthScript_Detection.ps1 -------------------------------------------------------------------------------- /Other/Code Signing/PMPCCloudTrustedPublisherCertificate_HealthScript_Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Code Signing/PMPCCloudTrustedPublisherCertificate_HealthScript_Detection.ps1 -------------------------------------------------------------------------------- /Other/Code Signing/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Code Signing/ReadMe.md -------------------------------------------------------------------------------- /Other/ConfigurationManager/Get-TopSUPname/Get-TopSUPName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/ConfigurationManager/Get-TopSUPname/Get-TopSUPName.ps1 -------------------------------------------------------------------------------- /Other/ConfigurationManager/Get-TopSUPname/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/ConfigurationManager/Get-TopSUPname/readme.md -------------------------------------------------------------------------------- /Other/ConfigurationManager/Test-SMSProvider/Test-SMSProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/ConfigurationManager/Test-SMSProvider/Test-SMSProvider.ps1 -------------------------------------------------------------------------------- /Other/CustomAppsHelper/PatchMyPC-CustomAppsHelper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/CustomAppsHelper/PatchMyPC-CustomAppsHelper.ps1 -------------------------------------------------------------------------------- /Other/CustomAppsHelper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/CustomAppsHelper/readme.md -------------------------------------------------------------------------------- /Other/Get-FortiClientVPNOnlineInstaller/Get-FortiClientVPNOnlineInstaller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Get-FortiClientVPNOnlineInstaller/Get-FortiClientVPNOnlineInstaller.ps1 -------------------------------------------------------------------------------- /Other/Get-FortiClientVPNOnlineInstaller/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Get-FortiClientVPNOnlineInstaller/readme.md -------------------------------------------------------------------------------- /Other/Reports/Get-IntuneReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Reports/Get-IntuneReport.ps1 -------------------------------------------------------------------------------- /Other/Reports/Get-PMPCFoundApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Reports/Get-PMPCFoundApps.ps1 -------------------------------------------------------------------------------- /Other/Reports/Get-UpdateRingForecast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Reports/Get-UpdateRingForecast.ps1 -------------------------------------------------------------------------------- /Other/Reports/Get-Win32AppRelationships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Reports/Get-Win32AppRelationships.ps1 -------------------------------------------------------------------------------- /Other/Timestamping/Test-TimeStamping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Other/Timestamping/Test-TimeStamping.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Templates/Uninstall-Old-Java/Uninstall-Java.PS1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/Uninstall-Old-Java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Templates/Uninstall-Old-Java/readme.md -------------------------------------------------------------------------------- /Templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Templates/readme.md -------------------------------------------------------------------------------- /Uninstall/Post-Uninstall/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/Uninstall-VLCMediaPlayer-MSI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/Uninstall-VLCMediaPlayer-MSI.ps1 -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-AddCustomPreInstallScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-AddCustomPreInstallScript.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-AddCustomPreInstallScript2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-AddCustomPreInstallScript2.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-DeployVLC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-DeployVLC.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-InstallerTypeVLC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-InstallerTypeVLC.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-RequiredAssignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Cloud-RequiredAssignment.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-CM-AddCustomPrePostScript-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-CM-AddCustomPrePostScript-new.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-Intune-AddCustomPrePostScript-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-Intune-AddCustomPrePostScript-new.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-PreScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/images/Publisher-PreScript.png -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall VLC Media Player MSI/readme.md -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall-Software/Uninstall-Software.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall-Software/Uninstall-Software.Tests.ps1 -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall-Software/Uninstall-Software.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall-Software/Uninstall-Software.ps1 -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/Uninstall-Software/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatchMyPCTeam/Community-Scripts/HEAD/Uninstall/Pre-Uninstall/Uninstall-Software/readme.md -------------------------------------------------------------------------------- /Uninstall/Pre-Uninstall/readme.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------