├── .gitattributes ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Assets ├── DashboardBanner.jpg ├── DashboardBanner2.jpg ├── DashboardBanner3.jpg ├── DashboardBanner4.jpg ├── DashboardBanner5.jpg ├── DashboardBannerDark.jpg ├── DashboardBannerLight.jpg ├── FeaturedBg.jpg ├── FeaturedBg2.jpg ├── ITATKWinUI.png ├── ITATKWinUIPromo.jpg ├── ITATKWinUIPromoDark.png ├── ITATKWinUIPromoDarkSmall.png ├── ITATKWinUIPromoLight.png ├── ITATKWinUIPromoLightSmall.png ├── LockScreenLogo.scale-200.png ├── Powershell5.png ├── Powershell7.ico ├── SampleDashboard.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Changelog.xml ├── Dashboard.xaml ├── Dashboard.xaml.cs ├── ITATKWinUI.csproj ├── ITATKWinUI.sln ├── LICENSE ├── Loading.xaml ├── Loading.xaml.cs ├── MachineInfoGather.ps1 ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Modules ├── CimCmdlets │ └── CimCmdlets.psd1 ├── Microsoft.PowerShell.Diagnostics │ ├── Diagnostics.format.ps1xml │ ├── Event.format.ps1xml │ ├── GetEvent.types.ps1xml │ └── Microsoft.PowerShell.Diagnostics.psd1 ├── Microsoft.PowerShell.Host │ └── Microsoft.PowerShell.Host.psd1 ├── Microsoft.PowerShell.Management │ └── Microsoft.PowerShell.Management.psd1 ├── Microsoft.PowerShell.Security │ └── Microsoft.PowerShell.Security.psd1 ├── Microsoft.PowerShell.Utility │ └── Microsoft.PowerShell.Utility.psd1 ├── Microsoft.WSMan.Management │ ├── Microsoft.WSMan.Management.psd1 │ └── WSMan.format.ps1xml └── PSDiagnostics │ ├── PSDiagnostics.psd1 │ └── PSDiagnostics.psm1 ├── Package.appxmanifest ├── Properties └── launchSettings.json ├── README.md ├── Reporting.xaml ├── Reporting.xaml.cs ├── Scripts ├── Get-ADInfo.ps1 ├── Get-CurrentLoggedUsers.ps1 ├── Get-OSinfo.ps1 ├── Invoke-Reboot.ps1 ├── LogoffUser.ps1 ├── MultiLineTestScript.ps1 └── OpenFileExplorer.ps1 ├── Settings.xaml ├── Settings.xaml.cs ├── Settings.xml ├── UpdateInfo.xml ├── Updater.ps1 ├── Usage.csv ├── XML ├── Categories.xml └── Scripts.xml └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/DashboardBanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBanner.jpg -------------------------------------------------------------------------------- /Assets/DashboardBanner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBanner2.jpg -------------------------------------------------------------------------------- /Assets/DashboardBanner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBanner3.jpg -------------------------------------------------------------------------------- /Assets/DashboardBanner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBanner4.jpg -------------------------------------------------------------------------------- /Assets/DashboardBanner5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBanner5.jpg -------------------------------------------------------------------------------- /Assets/DashboardBannerDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBannerDark.jpg -------------------------------------------------------------------------------- /Assets/DashboardBannerLight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/DashboardBannerLight.jpg -------------------------------------------------------------------------------- /Assets/FeaturedBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/FeaturedBg.jpg -------------------------------------------------------------------------------- /Assets/FeaturedBg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/FeaturedBg2.jpg -------------------------------------------------------------------------------- /Assets/ITATKWinUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUI.png -------------------------------------------------------------------------------- /Assets/ITATKWinUIPromo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUIPromo.jpg -------------------------------------------------------------------------------- /Assets/ITATKWinUIPromoDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUIPromoDark.png -------------------------------------------------------------------------------- /Assets/ITATKWinUIPromoDarkSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUIPromoDarkSmall.png -------------------------------------------------------------------------------- /Assets/ITATKWinUIPromoLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUIPromoLight.png -------------------------------------------------------------------------------- /Assets/ITATKWinUIPromoLightSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/ITATKWinUIPromoLightSmall.png -------------------------------------------------------------------------------- /Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/Powershell5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Powershell5.png -------------------------------------------------------------------------------- /Assets/Powershell7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Powershell7.ico -------------------------------------------------------------------------------- /Assets/SampleDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/SampleDashboard.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Changelog.xml -------------------------------------------------------------------------------- /Dashboard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Dashboard.xaml -------------------------------------------------------------------------------- /Dashboard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Dashboard.xaml.cs -------------------------------------------------------------------------------- /ITATKWinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/ITATKWinUI.csproj -------------------------------------------------------------------------------- /ITATKWinUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/ITATKWinUI.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Loading.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Loading.xaml -------------------------------------------------------------------------------- /Loading.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Loading.xaml.cs -------------------------------------------------------------------------------- /MachineInfoGather.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/MachineInfoGather.ps1 -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Modules/CimCmdlets/CimCmdlets.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/CimCmdlets/CimCmdlets.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 -------------------------------------------------------------------------------- /Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml -------------------------------------------------------------------------------- /Modules/PSDiagnostics/PSDiagnostics.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/PSDiagnostics/PSDiagnostics.psd1 -------------------------------------------------------------------------------- /Modules/PSDiagnostics/PSDiagnostics.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Modules/PSDiagnostics/PSDiagnostics.psm1 -------------------------------------------------------------------------------- /Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Package.appxmanifest -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/README.md -------------------------------------------------------------------------------- /Reporting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Reporting.xaml -------------------------------------------------------------------------------- /Reporting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Reporting.xaml.cs -------------------------------------------------------------------------------- /Scripts/Get-ADInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/Get-ADInfo.ps1 -------------------------------------------------------------------------------- /Scripts/Get-CurrentLoggedUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/Get-CurrentLoggedUsers.ps1 -------------------------------------------------------------------------------- /Scripts/Get-OSinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/Get-OSinfo.ps1 -------------------------------------------------------------------------------- /Scripts/Invoke-Reboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/Invoke-Reboot.ps1 -------------------------------------------------------------------------------- /Scripts/LogoffUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/LogoffUser.ps1 -------------------------------------------------------------------------------- /Scripts/MultiLineTestScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/MultiLineTestScript.ps1 -------------------------------------------------------------------------------- /Scripts/OpenFileExplorer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Scripts/OpenFileExplorer.ps1 -------------------------------------------------------------------------------- /Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Settings.xaml -------------------------------------------------------------------------------- /Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Settings.xaml.cs -------------------------------------------------------------------------------- /Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Settings.xml -------------------------------------------------------------------------------- /UpdateInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/UpdateInfo.xml -------------------------------------------------------------------------------- /Updater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Updater.ps1 -------------------------------------------------------------------------------- /Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/Usage.csv -------------------------------------------------------------------------------- /XML/Categories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/XML/Categories.xml -------------------------------------------------------------------------------- /XML/Scripts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/XML/Scripts.xml -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkasco/IT-Admin-Toolkit-WinUI/HEAD/app.manifest --------------------------------------------------------------------------------