├── Active Directory ├── Get-ADGroupMemberAddDate.ps1 ├── Get-ADGroupMemberChangesHistory.ps1 ├── Get-ADGroupMemberRecursive.ps1 ├── Invoke-ADPasswordsAudit.ps1 └── Reset-KrbtgtAccount.ps1 ├── Azure ├── Add-AzureADAppUserConsent.ps1 └── Get-AzureDevOpsOrganizationOverview.ps1 ├── CHANGELOG.md ├── Confluence └── fill_confluence_table_with_aws_dns_records.ps1 ├── ConvertFrom-HTMLTable.ps1 ├── ConvertFrom-XML.ps1 ├── Copy-Item2.ps1 ├── Export-ScheduledTask.ps1 ├── Export-ScriptsToModule.ps1 ├── FTP └── install_FTP_server.ps1 ├── Get-AccountFromSID.ps1 ├── Get-AdministrativeEvents.ps1 ├── Get-ComputerInfo.ps1 ├── Get-CurrentLoad.ps1 ├── Get-FailedScheduledTask.ps1 ├── Get-FirewallLog.ps1 ├── Get-FirewallRules.ps1 ├── Get-FolderSize.ps1 ├── Get-InstalledSoftware.ps1 ├── Get-LogOnOff.ps1 ├── Get-LoggedOnUser.ps1 ├── Get-NetworkCapture.ps1 ├── Get-PSLog.ps1 ├── Get-PendingReboot.ps1 ├── Get-ReliabilityHistory.ps1 ├── Get-SFCLogEvent.ps1 ├── Get-SIDFromAccount.ps1 ├── Get-Shutdown.ps1 ├── Get-Uptime.ps1 ├── Get-WinEventArchivedIncluded.ps1 ├── INTUNE ├── Connect-Graph.ps1 ├── ConvertFrom-MDMDiagReport.ps1 ├── ConvertFrom-MDMDiagReportXML.ps1 ├── Get-ClientIntunePolicyResult.ps1 ├── Get-ClientStatusReport.ps1 ├── Get-IntuneDeviceComplianceStatus.ps1 ├── Get-IntuneEnrollmentStatus.ps1 ├── Get-IntuneLog.ps1 ├── Get-IntuneOverallComplianceStatus.ps1 ├── Get-IntuneReport.ps1 ├── Get-MDMClientData.ps1 ├── Invoke-IntuneScriptRedeploy.ps1 ├── Invoke-IntuneWin32AppRedeploy.ps1 ├── Invoke-MDMReenrollment.ps1 ├── New-GraphAPIAuthHeader.ps1 ├── Reset-HybridADJoin.ps1 ├── Reset-IntuneEnrollment.ps1 └── Win32App │ └── SetBitLockerPin │ ├── BitlockerIsEnabledAndNotSet.ps1 │ ├── DetectBitLockerPin.ps1 │ ├── Popup.ps1 │ ├── ServiceUI.exe │ ├── SetBitLockerPin.png │ └── SetBitLockerPin.ps1 ├── Invoke-AsLoggedUser.ps1 ├── Invoke-AsSystem.ps1 ├── Invoke-Command2.ps1 ├── Invoke-NetworkCapture.ps1 ├── JIRA └── New-JIRATicket.ps1 ├── OSD ├── OSDComputerName_via_ServiceTag │ ├── SET OSDCOMPUTERNAME BASED ON SERIAL NUMBER.zip │ └── Set-CMTSStep_ServiceTag2OSDComputerName.ps1 └── OfflineDomainJoin │ ├── OFFLINE DOMAIN JOIN USING DJOIN.zip │ └── Set-CMDeviceDJoinBlobVariable.ps1 ├── Quote-String.ps1 ├── README.md ├── Read-FromClipboard.ps1 ├── SCCM ├── Connect-SCCM.ps1 ├── Get-CMLog.ps1 ├── Invoke-CMAdminServiceQuery.ps1 ├── Invoke-CMComplianceEvaluation.ps1 └── Update-CMClientPolicy.ps1 ├── SCVMM └── New-VMFromTemplate.ps1 ├── Search-ADObjectACL.ps1 ├── Search-GPOSetting.ps1 ├── Shutdown-Computer.ps1 ├── Start-TCPPortListener.ps1 ├── Test-Connection2.ps1 ├── Test-Path2.ps1 ├── Test-Port.ps1 ├── Unlock-File.ps1 ├── Watch-EventLog.ps1 ├── Write-Log.ps1 ├── environmental variables ├── Get-EnvVariable.ps1 ├── Remove-EnvVariable.ps1 └── Set-EnvVariable.ps1 ├── event subscriptions ├── Get-EventSubscription.ps1 ├── Get-EventSubscriptionStatus.ps1 ├── New-EventSubscription.ps1 ├── Remove-EventSubscription.ps1 └── Set-EventSubscription.ps1 └── modules ├── AdmPwd.PS ├── AdmPwd.PS.dll ├── AdmPwd.PS.format.ps1xml ├── AdmPwd.PS.psd1 ├── AdmPwd.Utils.dll └── en-US │ └── AdmPwd.PS.dll-Help.xml ├── AutoItX ├── AutoItX.psd1 ├── AutoItX3.Assembly.dll ├── AutoItX3.PowerShell.dll ├── AutoItX3.dll └── AutoItX3_x64.dll ├── ConfluencePS └── 2.5.0 │ ├── CHANGELOG.md │ ├── ConfluencePS.Types.cs │ ├── ConfluencePS.format.ps1xml │ ├── ConfluencePS.psd1 │ ├── ConfluencePS.psm1 │ ├── LICENSE │ ├── PSGetModuleInfo.xml │ ├── README.md │ └── en-US │ ├── ConfluencePS-help.xml │ └── about_ConfluencePS.help.txt ├── PSScriptAnalyzer └── 1.17.1 │ ├── PSScriptAnalyzer.cat │ ├── PSScriptAnalyzer.psd1 │ ├── PSScriptAnalyzer.psm1 │ ├── ScriptAnalyzer.format.ps1xml │ ├── ScriptAnalyzer.types.ps1xml │ └── Settings │ ├── CmdletDesign.psd1 │ ├── CodeFormatting.psd1 │ ├── CodeFormattingAllman.psd1 │ ├── CodeFormattingOTBS.psd1 │ ├── CodeFormattingStroustrup.psd1 │ ├── DSC.psd1 │ ├── PSGallery.psd1 │ ├── ScriptFunctions.psd1 │ ├── ScriptSecurity.psd1 │ ├── ScriptingStyle.psd1 │ ├── core-6.0.2-linux.json │ ├── core-6.0.2-macos.json │ ├── core-6.0.2-windows.json │ ├── desktop-3.0-windows.json │ ├── desktop-4.0-windows.json │ └── desktop-5.1.14393.206-windows.json ├── SplitPipeline ├── LICENSE.txt ├── README.htm ├── Release-Notes.htm ├── SplitPipeline.dll ├── SplitPipeline.nuspec ├── SplitPipeline.psd1 ├── [Content_Types].xml ├── _rels │ └── .rels ├── en-US │ ├── SplitPipeline.dll-Help.xml │ └── about_SplitPipeline.help.txt ├── package │ └── services │ │ └── metadata │ │ └── core-properties │ │ └── 9ffd50a1389e4b6d8b6c79579467ccd3.psmdcp └── tools │ └── SplitPipeline │ ├── LICENSE.txt │ ├── README.htm │ ├── Release-Notes.htm │ ├── SplitPipeline.dll │ ├── SplitPipeline.psd1 │ └── en-US │ ├── SplitPipeline.dll-Help.xml │ └── about_SplitPipeline.help.txt └── psasync ├── psasync.psd1 └── psasync.psm1 /Active Directory/Get-ADGroupMemberAddDate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Active Directory/Get-ADGroupMemberAddDate.ps1 -------------------------------------------------------------------------------- /Active Directory/Get-ADGroupMemberChangesHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Active Directory/Get-ADGroupMemberChangesHistory.ps1 -------------------------------------------------------------------------------- /Active Directory/Get-ADGroupMemberRecursive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Active Directory/Get-ADGroupMemberRecursive.ps1 -------------------------------------------------------------------------------- /Active Directory/Invoke-ADPasswordsAudit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Active Directory/Invoke-ADPasswordsAudit.ps1 -------------------------------------------------------------------------------- /Active Directory/Reset-KrbtgtAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Active Directory/Reset-KrbtgtAccount.ps1 -------------------------------------------------------------------------------- /Azure/Add-AzureADAppUserConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Azure/Add-AzureADAppUserConsent.ps1 -------------------------------------------------------------------------------- /Azure/Get-AzureDevOpsOrganizationOverview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Azure/Get-AzureDevOpsOrganizationOverview.ps1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Confluence/fill_confluence_table_with_aws_dns_records.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Confluence/fill_confluence_table_with_aws_dns_records.ps1 -------------------------------------------------------------------------------- /ConvertFrom-HTMLTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/ConvertFrom-HTMLTable.ps1 -------------------------------------------------------------------------------- /ConvertFrom-XML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/ConvertFrom-XML.ps1 -------------------------------------------------------------------------------- /Copy-Item2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Copy-Item2.ps1 -------------------------------------------------------------------------------- /Export-ScheduledTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Export-ScheduledTask.ps1 -------------------------------------------------------------------------------- /Export-ScriptsToModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Export-ScriptsToModule.ps1 -------------------------------------------------------------------------------- /FTP/install_FTP_server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/FTP/install_FTP_server.ps1 -------------------------------------------------------------------------------- /Get-AccountFromSID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-AccountFromSID.ps1 -------------------------------------------------------------------------------- /Get-AdministrativeEvents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-AdministrativeEvents.ps1 -------------------------------------------------------------------------------- /Get-ComputerInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-ComputerInfo.ps1 -------------------------------------------------------------------------------- /Get-CurrentLoad.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-CurrentLoad.ps1 -------------------------------------------------------------------------------- /Get-FailedScheduledTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-FailedScheduledTask.ps1 -------------------------------------------------------------------------------- /Get-FirewallLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-FirewallLog.ps1 -------------------------------------------------------------------------------- /Get-FirewallRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-FirewallRules.ps1 -------------------------------------------------------------------------------- /Get-FolderSize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-FolderSize.ps1 -------------------------------------------------------------------------------- /Get-InstalledSoftware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-InstalledSoftware.ps1 -------------------------------------------------------------------------------- /Get-LogOnOff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-LogOnOff.ps1 -------------------------------------------------------------------------------- /Get-LoggedOnUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-LoggedOnUser.ps1 -------------------------------------------------------------------------------- /Get-NetworkCapture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-NetworkCapture.ps1 -------------------------------------------------------------------------------- /Get-PSLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-PSLog.ps1 -------------------------------------------------------------------------------- /Get-PendingReboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-PendingReboot.ps1 -------------------------------------------------------------------------------- /Get-ReliabilityHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-ReliabilityHistory.ps1 -------------------------------------------------------------------------------- /Get-SFCLogEvent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-SFCLogEvent.ps1 -------------------------------------------------------------------------------- /Get-SIDFromAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-SIDFromAccount.ps1 -------------------------------------------------------------------------------- /Get-Shutdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-Shutdown.ps1 -------------------------------------------------------------------------------- /Get-Uptime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-Uptime.ps1 -------------------------------------------------------------------------------- /Get-WinEventArchivedIncluded.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Get-WinEventArchivedIncluded.ps1 -------------------------------------------------------------------------------- /INTUNE/Connect-Graph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Connect-Graph.ps1 -------------------------------------------------------------------------------- /INTUNE/ConvertFrom-MDMDiagReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/ConvertFrom-MDMDiagReport.ps1 -------------------------------------------------------------------------------- /INTUNE/ConvertFrom-MDMDiagReportXML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/ConvertFrom-MDMDiagReportXML.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-ClientIntunePolicyResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-ClientIntunePolicyResult.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-ClientStatusReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-ClientStatusReport.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-IntuneDeviceComplianceStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-IntuneDeviceComplianceStatus.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-IntuneEnrollmentStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-IntuneEnrollmentStatus.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-IntuneLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-IntuneLog.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-IntuneOverallComplianceStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-IntuneOverallComplianceStatus.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-IntuneReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-IntuneReport.ps1 -------------------------------------------------------------------------------- /INTUNE/Get-MDMClientData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Get-MDMClientData.ps1 -------------------------------------------------------------------------------- /INTUNE/Invoke-IntuneScriptRedeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Invoke-IntuneScriptRedeploy.ps1 -------------------------------------------------------------------------------- /INTUNE/Invoke-IntuneWin32AppRedeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Invoke-IntuneWin32AppRedeploy.ps1 -------------------------------------------------------------------------------- /INTUNE/Invoke-MDMReenrollment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Invoke-MDMReenrollment.ps1 -------------------------------------------------------------------------------- /INTUNE/New-GraphAPIAuthHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/New-GraphAPIAuthHeader.ps1 -------------------------------------------------------------------------------- /INTUNE/Reset-HybridADJoin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Reset-HybridADJoin.ps1 -------------------------------------------------------------------------------- /INTUNE/Reset-IntuneEnrollment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Reset-IntuneEnrollment.ps1 -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/BitlockerIsEnabledAndNotSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/BitlockerIsEnabledAndNotSet.ps1 -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/DetectBitLockerPin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/DetectBitLockerPin.ps1 -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/Popup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/Popup.ps1 -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/ServiceUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/ServiceUI.exe -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/SetBitLockerPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/SetBitLockerPin.png -------------------------------------------------------------------------------- /INTUNE/Win32App/SetBitLockerPin/SetBitLockerPin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/INTUNE/Win32App/SetBitLockerPin/SetBitLockerPin.ps1 -------------------------------------------------------------------------------- /Invoke-AsLoggedUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Invoke-AsLoggedUser.ps1 -------------------------------------------------------------------------------- /Invoke-AsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Invoke-AsSystem.ps1 -------------------------------------------------------------------------------- /Invoke-Command2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Invoke-Command2.ps1 -------------------------------------------------------------------------------- /Invoke-NetworkCapture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Invoke-NetworkCapture.ps1 -------------------------------------------------------------------------------- /JIRA/New-JIRATicket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/JIRA/New-JIRATicket.ps1 -------------------------------------------------------------------------------- /OSD/OSDComputerName_via_ServiceTag/SET OSDCOMPUTERNAME BASED ON SERIAL NUMBER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/OSD/OSDComputerName_via_ServiceTag/SET OSDCOMPUTERNAME BASED ON SERIAL NUMBER.zip -------------------------------------------------------------------------------- /OSD/OSDComputerName_via_ServiceTag/Set-CMTSStep_ServiceTag2OSDComputerName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/OSD/OSDComputerName_via_ServiceTag/Set-CMTSStep_ServiceTag2OSDComputerName.ps1 -------------------------------------------------------------------------------- /OSD/OfflineDomainJoin/OFFLINE DOMAIN JOIN USING DJOIN.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/OSD/OfflineDomainJoin/OFFLINE DOMAIN JOIN USING DJOIN.zip -------------------------------------------------------------------------------- /OSD/OfflineDomainJoin/Set-CMDeviceDJoinBlobVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/OSD/OfflineDomainJoin/Set-CMDeviceDJoinBlobVariable.ps1 -------------------------------------------------------------------------------- /Quote-String.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Quote-String.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/README.md -------------------------------------------------------------------------------- /Read-FromClipboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Read-FromClipboard.ps1 -------------------------------------------------------------------------------- /SCCM/Connect-SCCM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCCM/Connect-SCCM.ps1 -------------------------------------------------------------------------------- /SCCM/Get-CMLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCCM/Get-CMLog.ps1 -------------------------------------------------------------------------------- /SCCM/Invoke-CMAdminServiceQuery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCCM/Invoke-CMAdminServiceQuery.ps1 -------------------------------------------------------------------------------- /SCCM/Invoke-CMComplianceEvaluation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCCM/Invoke-CMComplianceEvaluation.ps1 -------------------------------------------------------------------------------- /SCCM/Update-CMClientPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCCM/Update-CMClientPolicy.ps1 -------------------------------------------------------------------------------- /SCVMM/New-VMFromTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/SCVMM/New-VMFromTemplate.ps1 -------------------------------------------------------------------------------- /Search-ADObjectACL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Search-ADObjectACL.ps1 -------------------------------------------------------------------------------- /Search-GPOSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Search-GPOSetting.ps1 -------------------------------------------------------------------------------- /Shutdown-Computer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Shutdown-Computer.ps1 -------------------------------------------------------------------------------- /Start-TCPPortListener.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Start-TCPPortListener.ps1 -------------------------------------------------------------------------------- /Test-Connection2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Test-Connection2.ps1 -------------------------------------------------------------------------------- /Test-Path2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Test-Path2.ps1 -------------------------------------------------------------------------------- /Test-Port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Test-Port.ps1 -------------------------------------------------------------------------------- /Unlock-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Unlock-File.ps1 -------------------------------------------------------------------------------- /Watch-EventLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Watch-EventLog.ps1 -------------------------------------------------------------------------------- /Write-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/Write-Log.ps1 -------------------------------------------------------------------------------- /environmental variables/Get-EnvVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/environmental variables/Get-EnvVariable.ps1 -------------------------------------------------------------------------------- /environmental variables/Remove-EnvVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/environmental variables/Remove-EnvVariable.ps1 -------------------------------------------------------------------------------- /environmental variables/Set-EnvVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/environmental variables/Set-EnvVariable.ps1 -------------------------------------------------------------------------------- /event subscriptions/Get-EventSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/event subscriptions/Get-EventSubscription.ps1 -------------------------------------------------------------------------------- /event subscriptions/Get-EventSubscriptionStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/event subscriptions/Get-EventSubscriptionStatus.ps1 -------------------------------------------------------------------------------- /event subscriptions/New-EventSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/event subscriptions/New-EventSubscription.ps1 -------------------------------------------------------------------------------- /event subscriptions/Remove-EventSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/event subscriptions/Remove-EventSubscription.ps1 -------------------------------------------------------------------------------- /event subscriptions/Set-EventSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/event subscriptions/Set-EventSubscription.ps1 -------------------------------------------------------------------------------- /modules/AdmPwd.PS/AdmPwd.PS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AdmPwd.PS/AdmPwd.PS.dll -------------------------------------------------------------------------------- /modules/AdmPwd.PS/AdmPwd.PS.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AdmPwd.PS/AdmPwd.PS.format.ps1xml -------------------------------------------------------------------------------- /modules/AdmPwd.PS/AdmPwd.PS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AdmPwd.PS/AdmPwd.PS.psd1 -------------------------------------------------------------------------------- /modules/AdmPwd.PS/AdmPwd.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AdmPwd.PS/AdmPwd.Utils.dll -------------------------------------------------------------------------------- /modules/AdmPwd.PS/en-US/AdmPwd.PS.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AdmPwd.PS/en-US/AdmPwd.PS.dll-Help.xml -------------------------------------------------------------------------------- /modules/AutoItX/AutoItX.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AutoItX/AutoItX.psd1 -------------------------------------------------------------------------------- /modules/AutoItX/AutoItX3.Assembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AutoItX/AutoItX3.Assembly.dll -------------------------------------------------------------------------------- /modules/AutoItX/AutoItX3.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AutoItX/AutoItX3.PowerShell.dll -------------------------------------------------------------------------------- /modules/AutoItX/AutoItX3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AutoItX/AutoItX3.dll -------------------------------------------------------------------------------- /modules/AutoItX/AutoItX3_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/AutoItX/AutoItX3_x64.dll -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/CHANGELOG.md -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/ConfluencePS.Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/ConfluencePS.Types.cs -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/ConfluencePS.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/ConfluencePS.format.ps1xml -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/ConfluencePS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/ConfluencePS.psd1 -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/ConfluencePS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/ConfluencePS.psm1 -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/LICENSE -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/README.md -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/en-US/ConfluencePS-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/en-US/ConfluencePS-help.xml -------------------------------------------------------------------------------- /modules/ConfluencePS/2.5.0/en-US/about_ConfluencePS.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/ConfluencePS/2.5.0/en-US/about_ConfluencePS.help.txt -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.cat -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/PSScriptAnalyzer.psm1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/ScriptAnalyzer.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/ScriptAnalyzer.format.ps1xml -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/ScriptAnalyzer.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/ScriptAnalyzer.types.ps1xml -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/CmdletDesign.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/CmdletDesign.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormatting.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormatting.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingAllman.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingAllman.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingOTBS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingOTBS.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingStroustrup.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/CodeFormattingStroustrup.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/DSC.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/DSC.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/PSGallery.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/PSGallery.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/ScriptFunctions.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/ScriptFunctions.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/ScriptSecurity.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/ScriptSecurity.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/ScriptingStyle.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/ScriptingStyle.psd1 -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-linux.json -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-macos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-macos.json -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/core-6.0.2-windows.json -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/desktop-3.0-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/desktop-3.0-windows.json -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/desktop-4.0-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/desktop-4.0-windows.json -------------------------------------------------------------------------------- /modules/PSScriptAnalyzer/1.17.1/Settings/desktop-5.1.14393.206-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/PSScriptAnalyzer/1.17.1/Settings/desktop-5.1.14393.206-windows.json -------------------------------------------------------------------------------- /modules/SplitPipeline/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/LICENSE.txt -------------------------------------------------------------------------------- /modules/SplitPipeline/README.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/README.htm -------------------------------------------------------------------------------- /modules/SplitPipeline/Release-Notes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/Release-Notes.htm -------------------------------------------------------------------------------- /modules/SplitPipeline/SplitPipeline.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/SplitPipeline.dll -------------------------------------------------------------------------------- /modules/SplitPipeline/SplitPipeline.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/SplitPipeline.nuspec -------------------------------------------------------------------------------- /modules/SplitPipeline/SplitPipeline.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/SplitPipeline.psd1 -------------------------------------------------------------------------------- /modules/SplitPipeline/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/[Content_Types].xml -------------------------------------------------------------------------------- /modules/SplitPipeline/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/_rels/.rels -------------------------------------------------------------------------------- /modules/SplitPipeline/en-US/SplitPipeline.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/en-US/SplitPipeline.dll-Help.xml -------------------------------------------------------------------------------- /modules/SplitPipeline/en-US/about_SplitPipeline.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/en-US/about_SplitPipeline.help.txt -------------------------------------------------------------------------------- /modules/SplitPipeline/package/services/metadata/core-properties/9ffd50a1389e4b6d8b6c79579467ccd3.psmdcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/package/services/metadata/core-properties/9ffd50a1389e4b6d8b6c79579467ccd3.psmdcp -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/LICENSE.txt -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/README.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/README.htm -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/Release-Notes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/Release-Notes.htm -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/SplitPipeline.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/SplitPipeline.dll -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/SplitPipeline.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/SplitPipeline.psd1 -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/en-US/SplitPipeline.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/en-US/SplitPipeline.dll-Help.xml -------------------------------------------------------------------------------- /modules/SplitPipeline/tools/SplitPipeline/en-US/about_SplitPipeline.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/SplitPipeline/tools/SplitPipeline/en-US/about_SplitPipeline.help.txt -------------------------------------------------------------------------------- /modules/psasync/psasync.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/psasync/psasync.psd1 -------------------------------------------------------------------------------- /modules/psasync/psasync.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrhgf/useful_powershell_functions/HEAD/modules/psasync/psasync.psm1 --------------------------------------------------------------------------------