Tag Archives: tool

tool, tools, applications and softwares

PowerShell tips – part 004.

Another tutorial about powershell commands. Get infos from Enviroment with powershell: [Environment]::UserName [Environment]::UserDomainName [Environment]::MachineName Test connection to server or test the network connectivity of a computer and get some common properties: Test-Connection google.com Test-Connection -ComputerName localhost -Count 1 | Select-Object IPv4Address,ResponseTime,TimeToLive Displays diagnostic information for a connection. Test-NetConnection Get a detailed IP configuration report for… Read More »

Disable NvStreamSvc – if you want that.

What is nvstreamsvc.exe? nvstreamsvc.exe is part of NVIDIA Streamer and developed by NVIDIA Corporation according to the nvstreamsvc.exe version information. nvstreamsvc.exe’s description is “NVIDIA Streamer Service” nvstreamsvc.exe is digitally signed by NVIDIA Corporation. nvstreamsvc.exe is usually located in the “C:\Program Files\NVIDIA Corporation\NvStreamSrv\” folder. So I want to disable nvstreamsvc and I used this:

PowerShell tips – part 003.

Today I will show you new tips and tricks with PowerShell. If you want to see more about your operating system information: Get-CimInstance Win32_OperatingSystem | FL * Show your Video Driver version: gwmi win32_VideoController | select DeviceID,Name,DriverVersion | FT * Take infos about your laptop battery: gwmi win32_battery gwmi -Class batterystatus -Namespace root\wmi You can… Read More »