├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── AADNamedLocation ├── AADNamedLocation.ps1 └── TrustedLocation.csv ├── ADSecurityReporter ├── ADSecurityReporter.psd1 ├── ADSecurityReporter.psm1 └── Readme.md ├── CertificateScanner ├── CertificateScanner.ps1 ├── ReadMe.md └── Sample.txt ├── Clean-ExchangeLog ├── Clean-ExchangeLogFiles.ps1 └── Readme.md ├── ExEmmModule ├── 1.0.5 │ ├── EmmExDAGModule.psd1 │ └── EmmExDAGModule.psm1 ├── 1.0.6 │ ├── EmmExDAGModule.psd1 │ └── EmmExDAGModule.psm1 ├── 2.0 │ ├── EmmExDAGModule.ps1 │ ├── EmmExDAGModule.psd1 │ └── EmmExDAGModule.psm1 ├── 2.1 │ ├── EmmExDAGModule.psd1 │ └── EmmExDAGModule.psm1 ├── 2.2 │ ├── EmmExDAGModule.psd1 │ ├── EmmExDAGModule.psm1 │ └── PSGetModuleInfo.xml └── ReadMe.md ├── ExchangeDBPlanner └── New-EXuserDBMigration.ps1 ├── ExpiryPassword ├── PasswordExpire.ps1 ├── Readme.md └── TeamsExamples.ps1 ├── FSLogixMigration ├── Agent GUI │ ├── Helpdesk FSLogix │ │ ├── Globals.ps1 │ │ ├── MainForm.Preview.ps1 │ │ ├── MainForm.TempPoint.psf │ │ ├── MainForm.psf │ │ ├── Startup.pss │ │ ├── WriteData.Package.ps1 │ │ ├── WriteData.Run.ps1 │ │ ├── WriteData.psproj │ │ ├── WriteData.psproj.psbuild │ │ ├── WriteData.psprojs │ │ └── bin │ │ │ └── x64 │ │ │ ├── UserMigration.exe │ │ │ ├── WriteData.exe │ │ │ └── WriteData.exe.config │ ├── WriteData.exe │ └── WriteData.exe.config ├── FSLogixMigration.ps1 └── Readme.md ├── Get-ActiveSession ├── Get-ActiveSession.psd1 └── Get-ActiveSession.psm1 ├── Get-SendAsReport ├── Get-SendAsReport.ps1 └── Read Me.md ├── Get-SharePermission ├── ReadMe.md └── Test-ShareList.ps1 ├── GroupReporter └── GroupsReporter.ps1 ├── PSCoin.ps1 ├── PortScan └── PortScan.ps1 ├── PrepareO365MailboxUser ├── PrepareO365User.ps1 └── Readme.md ├── README.md ├── SQLTest ├── Readme.md └── SqlMonWindowsAuth.ps1 ├── Send-GraphMail ├── ReadMe.md └── Send-GraphMail.ps1 ├── Set-LogonHours ├── ReadMe.md └── Set-LogonHours.ps1 ├── Start-PSCVMHostMM ├── ReadMe.md └── Start-PSCVMHostMM.ps1 ├── Telegram-PowerShell ├── ReadMe.md └── TelegramPowerShell.ps1 ├── TestRPC ├── ReadMe.md └── Test-RPC.ps1 └── WriteLog └── Alpha-Write-Log.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /AADNamedLocation/AADNamedLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/AADNamedLocation/AADNamedLocation.ps1 -------------------------------------------------------------------------------- /AADNamedLocation/TrustedLocation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/AADNamedLocation/TrustedLocation.csv -------------------------------------------------------------------------------- /ADSecurityReporter/ADSecurityReporter.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ADSecurityReporter/ADSecurityReporter.psd1 -------------------------------------------------------------------------------- /ADSecurityReporter/ADSecurityReporter.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ADSecurityReporter/ADSecurityReporter.psm1 -------------------------------------------------------------------------------- /ADSecurityReporter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ADSecurityReporter/Readme.md -------------------------------------------------------------------------------- /CertificateScanner/CertificateScanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/CertificateScanner/CertificateScanner.ps1 -------------------------------------------------------------------------------- /CertificateScanner/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/CertificateScanner/ReadMe.md -------------------------------------------------------------------------------- /CertificateScanner/Sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/CertificateScanner/Sample.txt -------------------------------------------------------------------------------- /Clean-ExchangeLog/Clean-ExchangeLogFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Clean-ExchangeLog/Clean-ExchangeLogFiles.ps1 -------------------------------------------------------------------------------- /Clean-ExchangeLog/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Clean-ExchangeLog/Readme.md -------------------------------------------------------------------------------- /ExEmmModule/1.0.5/EmmExDAGModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/1.0.5/EmmExDAGModule.psd1 -------------------------------------------------------------------------------- /ExEmmModule/1.0.5/EmmExDAGModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/1.0.5/EmmExDAGModule.psm1 -------------------------------------------------------------------------------- /ExEmmModule/1.0.6/EmmExDAGModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/1.0.6/EmmExDAGModule.psd1 -------------------------------------------------------------------------------- /ExEmmModule/1.0.6/EmmExDAGModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/1.0.6/EmmExDAGModule.psm1 -------------------------------------------------------------------------------- /ExEmmModule/2.0/EmmExDAGModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.0/EmmExDAGModule.ps1 -------------------------------------------------------------------------------- /ExEmmModule/2.0/EmmExDAGModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.0/EmmExDAGModule.psd1 -------------------------------------------------------------------------------- /ExEmmModule/2.0/EmmExDAGModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.0/EmmExDAGModule.psm1 -------------------------------------------------------------------------------- /ExEmmModule/2.1/EmmExDAGModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.1/EmmExDAGModule.psd1 -------------------------------------------------------------------------------- /ExEmmModule/2.1/EmmExDAGModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.1/EmmExDAGModule.psm1 -------------------------------------------------------------------------------- /ExEmmModule/2.2/EmmExDAGModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.2/EmmExDAGModule.psd1 -------------------------------------------------------------------------------- /ExEmmModule/2.2/EmmExDAGModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.2/EmmExDAGModule.psm1 -------------------------------------------------------------------------------- /ExEmmModule/2.2/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/2.2/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /ExEmmModule/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExEmmModule/ReadMe.md -------------------------------------------------------------------------------- /ExchangeDBPlanner/New-EXuserDBMigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExchangeDBPlanner/New-EXuserDBMigration.ps1 -------------------------------------------------------------------------------- /ExpiryPassword/PasswordExpire.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExpiryPassword/PasswordExpire.ps1 -------------------------------------------------------------------------------- /ExpiryPassword/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExpiryPassword/Readme.md -------------------------------------------------------------------------------- /ExpiryPassword/TeamsExamples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/ExpiryPassword/TeamsExamples.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/Globals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/Globals.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.Preview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.Preview.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.TempPoint.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.TempPoint.psf -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/MainForm.psf -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/Startup.pss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/Startup.pss -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.Package.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.Run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.Run.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psproj -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psproj.psbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psproj.psbuild -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psprojs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/WriteData.psprojs -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/UserMigration.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/UserMigration.exe -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/WriteData.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/WriteData.exe -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/WriteData.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/Helpdesk FSLogix/bin/x64/WriteData.exe.config -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/WriteData.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/WriteData.exe -------------------------------------------------------------------------------- /FSLogixMigration/Agent GUI/WriteData.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Agent GUI/WriteData.exe.config -------------------------------------------------------------------------------- /FSLogixMigration/FSLogixMigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/FSLogixMigration.ps1 -------------------------------------------------------------------------------- /FSLogixMigration/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/FSLogixMigration/Readme.md -------------------------------------------------------------------------------- /Get-ActiveSession/Get-ActiveSession.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-ActiveSession/Get-ActiveSession.psd1 -------------------------------------------------------------------------------- /Get-ActiveSession/Get-ActiveSession.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-ActiveSession/Get-ActiveSession.psm1 -------------------------------------------------------------------------------- /Get-SendAsReport/Get-SendAsReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-SendAsReport/Get-SendAsReport.ps1 -------------------------------------------------------------------------------- /Get-SendAsReport/Read Me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-SendAsReport/Read Me.md -------------------------------------------------------------------------------- /Get-SharePermission/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-SharePermission/ReadMe.md -------------------------------------------------------------------------------- /Get-SharePermission/Test-ShareList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Get-SharePermission/Test-ShareList.ps1 -------------------------------------------------------------------------------- /GroupReporter/GroupsReporter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/GroupReporter/GroupsReporter.ps1 -------------------------------------------------------------------------------- /PSCoin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/PSCoin.ps1 -------------------------------------------------------------------------------- /PortScan/PortScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/PortScan/PortScan.ps1 -------------------------------------------------------------------------------- /PrepareO365MailboxUser/PrepareO365User.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/PrepareO365MailboxUser/PrepareO365User.ps1 -------------------------------------------------------------------------------- /PrepareO365MailboxUser/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/PrepareO365MailboxUser/Readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/README.md -------------------------------------------------------------------------------- /SQLTest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/SQLTest/Readme.md -------------------------------------------------------------------------------- /SQLTest/SqlMonWindowsAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/SQLTest/SqlMonWindowsAuth.ps1 -------------------------------------------------------------------------------- /Send-GraphMail/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Send-GraphMail/ReadMe.md -------------------------------------------------------------------------------- /Send-GraphMail/Send-GraphMail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Send-GraphMail/Send-GraphMail.ps1 -------------------------------------------------------------------------------- /Set-LogonHours/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Set-LogonHours/ReadMe.md -------------------------------------------------------------------------------- /Set-LogonHours/Set-LogonHours.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Set-LogonHours/Set-LogonHours.ps1 -------------------------------------------------------------------------------- /Start-PSCVMHostMM/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Start-PSCVMHostMM/ReadMe.md -------------------------------------------------------------------------------- /Start-PSCVMHostMM/Start-PSCVMHostMM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Start-PSCVMHostMM/Start-PSCVMHostMM.ps1 -------------------------------------------------------------------------------- /Telegram-PowerShell/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Telegram-PowerShell/ReadMe.md -------------------------------------------------------------------------------- /Telegram-PowerShell/TelegramPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/Telegram-PowerShell/TelegramPowerShell.ps1 -------------------------------------------------------------------------------- /TestRPC/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/TestRPC/ReadMe.md -------------------------------------------------------------------------------- /TestRPC/Test-RPC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/TestRPC/Test-RPC.ps1 -------------------------------------------------------------------------------- /WriteLog/Alpha-Write-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farismalaeb/Powershell/HEAD/WriteLog/Alpha-Write-Log.ps1 --------------------------------------------------------------------------------