1
vote
0answers
77 views

Powershell: Remote install fails when trying to connect to database

I have been struggling for a few days with this issue. I tried googling the issue but haven't found any answers. I am trying to install an exe on a remote machine (VM) using powershell. The ...
0
votes
3answers
87 views

Double hop access to copy files without CredSSP

hello, We have large environment with hundreds of virtual machines. During our services deployment we need to copy some files from build drop to all these machines. So, we have: User machine, ...
0
votes
3answers
109 views

How to Acess Remote Computer Folders in PS SQLSERVER:\>

Recently I came to know how to use Powersehll commands for executing SQL queries as mentioned below: Import-Module “sqlps” -DisableNameChecking $ds=Invoke-Sqlcmd -Query $Query -Database $Database ...
1
vote
1answer
88 views

How many parallel executions can be done on a Powershell script

Hello we are planning to use a powershell script for some administrative tasks, which will be accessed by the remote admins. The script will be located on a central file share and will be accessed by ...
1
vote
1answer
747 views

Powershell: Using psexec with UNC path gives “access is denied”

I am trying to run a powershell command like this: psexec \\MachineB "\\MachineB\drops\Func2WebSiteOnline.bat" I get this error: PsExec could not start ...
1
vote
1answer
581 views

Access remote computers on cross domain using Powershell?

I need to copy files from local machine to remote computer, but both are on different domain. I tried to connect it using powershell, but the anti virus is blocking my connection. I cannot disable ...
1
vote
1answer
764 views

How to configure IIS remotely using powershell?

I am trying to write a simple script that lets you remotely add an app pool, site, and app to IIS using powershell. I figured out how to do this using APPCMD with a .bat on the local machine, but I ...
2
votes
2answers
1k views

Check if a Registry Path Exists in Remote Machine

I have used Power Shell to check if a path exists using this command . powershell test-path "HKCU:\Software\Microsoft\Windows" now how can the same be extended to remote machine. What is the syntax if ...
2
votes
1answer
788 views

Can I run Powershell commands as admin in PSSession when logged in as other user?

Scenario: Normally, I would use remote desktop, log on to my server, launch the Powershell window as Administrator and perform the import-module and subsequent commands to get the information I'm ...
3
votes
2answers
2k views

start remote process within the context

I am wondering how to start process remotely within the users context like he started it. Let me explain. I know how to start process remotely, so for example I want to start notepad: ...
1
vote
2answers
2k views

detect internet explorer version on remote machine

I'm trying to detect internet explorer version on remote machine. After some search with google I've wrote this. I'm testing it on local machine $pc = "." $key = "SOFTWARE\Microsoft\Internet ...
0
votes
1answer
362 views

A Script to run a program based on the state of a website

Platform Windows XP, - 7: Scripting language, I'm open to suggestions, but was thinking about using Windows Power Shell Need a script that basically checks the state of a website on the internet. It ...
7
votes
2answers
6k views

Get current user's credentials object in Powershell without prompting

I have a Powershell script that is going to be run through an automation tool against multiple servers. It works fine on Windows machines, as the remote calls use the tool's service account without ...
9
votes
4answers
8k views

How to admin a remote Windows Server with a command line interface?

When I was a Linux admin I could do anything from the SSH command line. Now, as a Windows admin, I have to deal with the Windows Remote Desktop graphical interface, which I found to be inefective ...