├── .gitignore ├── LICENSE ├── NuGet ├── ps.win.api.0.4.3.3.nupkg └── ps.win.api.nuspec ├── README.md ├── Screen ├── Console │ ├── Get-Hardware-Threads-Diff.jpg │ └── Interruption-Ctrl-C.jpg ├── Test │ ├── REST-Connections.jpg │ ├── REST-Curl.jpg │ ├── REST-WinService-Endpoints.jpg │ ├── Web-WinService-Management.jpg │ └── Wireshark-Show.jpg ├── Web │ ├── Web-Event.gif │ ├── Web-Example-0.3.1.gif │ ├── Web-Example-0.4.2.gif │ ├── Web-Hardware.jpg │ ├── Web-Metrics-Disk-Network.jpg │ ├── Web-Perf-CPU-MEM.jpg │ ├── Web-Process.jpg │ ├── Web-Sensors.jpg │ └── Web-Service.jpg └── ico │ ├── x128.ico │ ├── x128.png │ ├── x32.ico │ ├── x32.png │ ├── x64.ico │ └── x64.png ├── Test ├── README.md ├── REST-WinService-Endpoints.ps1 └── Web-WinService-Management.ps1 └── WinAPI ├── Bin ├── compiling-ps2exe.ps1 ├── winapi-console-0.3.0.exe ├── winapi-process-0.3.0.exe └── winapi-process-stop.ps1 ├── Deploy └── deploy-module-ps.win.api.ps1 ├── Module └── ps.win.api │ └── 0.4.3 │ ├── Functions │ ├── Find-Process.psm1 │ ├── Get-CPU.psm1 │ ├── Get-DiskLogical.psm1 │ ├── Get-DiskPartition.psm1 │ ├── Get-DiskPhysical.psm1 │ ├── Get-Driver.psm1 │ ├── Get-Event.psm1 │ ├── Get-Files.psm1 │ ├── Get-Hardware.psm1 │ ├── Get-HardwareNoJob.psm1 │ ├── Get-IOps.psm1 │ ├── Get-MemorySize.psm1 │ ├── Get-MemorySlots.psm1 │ ├── Get-NetInterfaceStat.psm1 │ ├── Get-NetIpConfig.psm1 │ ├── Get-NetStat.psm1 │ ├── Get-Performance.psm1 │ ├── Get-ProcessPerformance.psm1 │ ├── Get-Smart.psm1 │ ├── Get-Software.psm1 │ ├── Get-VideoCard.psm1 │ └── Get-WinUpdate.psm1 │ ├── ps.win.api.psd1 │ └── ps.win.api.psm1 ├── Process ├── test-port.ps1 ├── winapi-process-0.4.2.rar ├── winapi-process-start.ps1 └── winapi-process-stop.ps1 ├── Server ├── Template-WinAPI.ps1 ├── WinAPI-0.4.3.ps1 └── winapi.ini └── Service ├── Install-Service.ps1 ├── Remove-Service.ps1 ├── Start-Service.ps1 ├── Stop-Service.ps1 └── winapi-service-0.3.1.rar /.gitignore: -------------------------------------------------------------------------------- 1 | Log/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet/ps.win.api.0.4.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/NuGet/ps.win.api.0.4.3.3.nupkg -------------------------------------------------------------------------------- /NuGet/ps.win.api.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/NuGet/ps.win.api.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/README.md -------------------------------------------------------------------------------- /Screen/Console/Get-Hardware-Threads-Diff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Console/Get-Hardware-Threads-Diff.jpg -------------------------------------------------------------------------------- /Screen/Console/Interruption-Ctrl-C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Console/Interruption-Ctrl-C.jpg -------------------------------------------------------------------------------- /Screen/Test/REST-Connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Test/REST-Connections.jpg -------------------------------------------------------------------------------- /Screen/Test/REST-Curl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Test/REST-Curl.jpg -------------------------------------------------------------------------------- /Screen/Test/REST-WinService-Endpoints.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Test/REST-WinService-Endpoints.jpg -------------------------------------------------------------------------------- /Screen/Test/Web-WinService-Management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Test/Web-WinService-Management.jpg -------------------------------------------------------------------------------- /Screen/Test/Wireshark-Show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Test/Wireshark-Show.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Event.gif -------------------------------------------------------------------------------- /Screen/Web/Web-Example-0.3.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Example-0.3.1.gif -------------------------------------------------------------------------------- /Screen/Web/Web-Example-0.4.2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Example-0.4.2.gif -------------------------------------------------------------------------------- /Screen/Web/Web-Hardware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Hardware.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Metrics-Disk-Network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Metrics-Disk-Network.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Perf-CPU-MEM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Perf-CPU-MEM.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Process.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Sensors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Sensors.jpg -------------------------------------------------------------------------------- /Screen/Web/Web-Service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/Web/Web-Service.jpg -------------------------------------------------------------------------------- /Screen/ico/x128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x128.ico -------------------------------------------------------------------------------- /Screen/ico/x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x128.png -------------------------------------------------------------------------------- /Screen/ico/x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x32.ico -------------------------------------------------------------------------------- /Screen/ico/x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x32.png -------------------------------------------------------------------------------- /Screen/ico/x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x64.ico -------------------------------------------------------------------------------- /Screen/ico/x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Screen/ico/x64.png -------------------------------------------------------------------------------- /Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Test/README.md -------------------------------------------------------------------------------- /Test/REST-WinService-Endpoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Test/REST-WinService-Endpoints.ps1 -------------------------------------------------------------------------------- /Test/Web-WinService-Management.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/Test/Web-WinService-Management.ps1 -------------------------------------------------------------------------------- /WinAPI/Bin/compiling-ps2exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Bin/compiling-ps2exe.ps1 -------------------------------------------------------------------------------- /WinAPI/Bin/winapi-console-0.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Bin/winapi-console-0.3.0.exe -------------------------------------------------------------------------------- /WinAPI/Bin/winapi-process-0.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Bin/winapi-process-0.3.0.exe -------------------------------------------------------------------------------- /WinAPI/Bin/winapi-process-stop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Bin/winapi-process-stop.ps1 -------------------------------------------------------------------------------- /WinAPI/Deploy/deploy-module-ps.win.api.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Deploy/deploy-module-ps.win.api.ps1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Find-Process.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Find-Process.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-CPU.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-CPU.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskLogical.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskLogical.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskPartition.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskPartition.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskPhysical.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-DiskPhysical.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Driver.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Driver.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Event.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Event.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Files.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Files.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Hardware.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Hardware.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-HardwareNoJob.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-HardwareNoJob.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-IOps.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-IOps.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-MemorySize.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-MemorySize.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-MemorySlots.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-MemorySlots.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetInterfaceStat.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetInterfaceStat.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetIpConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetIpConfig.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetStat.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-NetStat.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Performance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Performance.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-ProcessPerformance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-ProcessPerformance.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Smart.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Smart.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Software.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-Software.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-VideoCard.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-VideoCard.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/Functions/Get-WinUpdate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/Functions/Get-WinUpdate.psm1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/ps.win.api.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/ps.win.api.psd1 -------------------------------------------------------------------------------- /WinAPI/Module/ps.win.api/0.4.3/ps.win.api.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Module/ps.win.api/0.4.3/ps.win.api.psm1 -------------------------------------------------------------------------------- /WinAPI/Process/test-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Process/test-port.ps1 -------------------------------------------------------------------------------- /WinAPI/Process/winapi-process-0.4.2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Process/winapi-process-0.4.2.rar -------------------------------------------------------------------------------- /WinAPI/Process/winapi-process-start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Process/winapi-process-start.ps1 -------------------------------------------------------------------------------- /WinAPI/Process/winapi-process-stop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Process/winapi-process-stop.ps1 -------------------------------------------------------------------------------- /WinAPI/Server/Template-WinAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Server/Template-WinAPI.ps1 -------------------------------------------------------------------------------- /WinAPI/Server/WinAPI-0.4.3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Server/WinAPI-0.4.3.ps1 -------------------------------------------------------------------------------- /WinAPI/Server/winapi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Server/winapi.ini -------------------------------------------------------------------------------- /WinAPI/Service/Install-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Service/Install-Service.ps1 -------------------------------------------------------------------------------- /WinAPI/Service/Remove-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Service/Remove-Service.ps1 -------------------------------------------------------------------------------- /WinAPI/Service/Start-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Service/Start-Service.ps1 -------------------------------------------------------------------------------- /WinAPI/Service/Stop-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Service/Stop-Service.ps1 -------------------------------------------------------------------------------- /WinAPI/Service/winapi-service-0.3.1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifailon/WinAPI/HEAD/WinAPI/Service/winapi-service-0.3.1.rar --------------------------------------------------------------------------------