About 29,800 results
Open links in new tab
  1. Get service status from remote server using powershell

    May 2, 2014 · Restarting a service and check for status on a remote server via PowerShell. 2.

  2. How to get disk capacity and free space of remote computer

    Aug 28, 2012 · The code for the function is a little over 100 lines long, so you can find it here: PowerShell version of the df command. Check out the Usage section for examples. The …

  3. Powershell Check Windows OS Version on Remote workstation

    Aug 7, 2014 · Powershell determine the remote computer OS. 2. Determine PowerShell version remotely via WMI. 0. OS ...

  4. Starting a .exe file on a remote computer using powershell

    Jan 7, 2017 · The second command gets the Windows PowerShell process and redirects the output to the Process.txt file. The command is submitted to the remote computer, and the file …

  5. how to edit a file in powershell remoting session (powershell)

    If you are using Powershell 5, you can use command called PSEdit. It only works from ISE. So first, open PowerShell ISE; Then open remote session to the remote computer using Enter …

  6. How to remote execute an ELEVATED remote script in PowerShell

    May 24, 2012 · In ServerA, if I run it from a normal prompt or powershell prompt it fails. If I run it from an elevated prompt it works. (run as administrator). The problem I have is when I try to …

  7. Powershell Remoting with credential - Stack Overflow

    Aug 5, 2013 · Powershell will default to the credentials of the user running the powershell session, if none are specified explicitly. So if you run Powershell as a user with administrative privileges …

  8. Remotely access certificate store using Powershell

    Feb 15, 2017 · 1) Use Remote Commands in PowerShell. 2) Run PS Commands on Remote Computers. Note: You can put all the script inside a scriptblock and you can pass it as a value …

  9. Powershell: Map/Unmap Network drive on a remote computer

    Jan 15, 2013 · Now with PowerShell 3.0 or above use: Remove-PSDrive -Name <Drive you want Remove> -Scope Global -Force or Remove-SmbMapping -LocalPath (<Drive you want …

  10. Reading event log remotely with Get-EventLog in Powershell

    Most cmdlets use Remote Procedure Call (RPC), but might also require additional services and settings on the target system. Beginning in Windows PowerShell 2.0, there is an alternate and …