Tagged Questions
0
votes
0answers
21 views
PowerShell Scale Excel Sheet
I'm working on a PowerShell script to change Excel documents into PDFs. As part of the process I am changing to a landscape orientation and I want to ensure that the sheet is scaled to fit one page. I ...
1
vote
1answer
83 views
Automating remote desktop connection
We use many remote desktops in our development environment and there are many server deployed in multiple environments. It is tedious to remember there IPs, usernames and passwords. I want to write ...
1
vote
1answer
123 views
“dynamic operations can only be performed in homogenous appdomain” error while launching PowerShell
I have a powershell script that I am trying to execute from WCF REST service.I am using the System.Management.Automtion and System.Management.Automtion.Runspaces assemblies.
The C# code looks like ...
0
votes
1answer
66 views
Connect Visual Studio 2012 to TFS 2012 programmatically
I'm building a base developer machine image such that when a new developer is added to the team, we can give the developer a machine which has all the tools installed and configured.
I'm trying to ...
0
votes
3answers
111 views
Handling a popup box using powershell
Can anyone please tell me how to click on "ok" or "cancel" on a popup window using powershell?
I am trying to automate a website using powershell, but I am new to powershell. I have to click on OK ...
0
votes
3answers
73 views
Difficulties creating an automatic file moving script (Powershell)
I'll start by stating that i'm pretty new to Powershell but from what i hear it can be pretty powerful.
with that said i'll specify the problem.
i'm trying to write a Powershell script destined to ...
-1
votes
2answers
186 views
how to change settings in internet explorer using powershell?
We need to be able to change internet explorer settings on hundreds of machines.
The change that we need to make is:
go to settings
connections
lan settings
uncheck "automatically detect settings"
...
0
votes
1answer
94 views
Automating a MSACCESS application with powershell
I want to be able to use the Sendwait function to automate a MS-ACCESS application using powershell commands. Unfortunately I haven't been able to get a handle in the usual way to the actual ...
0
votes
1answer
215 views
How to configure a VM from HyperV host using Powershell
I have a HyperV server with over 10 VMs hosted on it. They all use a base image so they are not connected to a domain nor do they have there NIC configured. Is there a way that I could run commands ...
0
votes
1answer
58 views
DOM - links for page not available on one machine, are on another
I am using Powershell to grab data from a website using DOM/IE. It works fine on my desktop. On my laptop, it fails. These are company configured machines with the same version of IE, same settings, ...
0
votes
1answer
235 views
Powershell Hyper-V Scripts won't work? + Auto Installing Windows
So I have a strange problem. When I do commands such as this:
New-VM -Name "MattTest" -MemoryStartupBytes 2GB -BootDevice CD -SwitchName Lab -path c:\VMdocs -NewVHDSizeBytes 40GB –NewVHDPath ...
2
votes
2answers
75 views
is it possible to build an “auto clicker” via powershell for windows, or green software?
i'd like to automate some processes, basically run some tools, click the menu, select from dropdownlist, then copy and paste to a notepad.exe application to save as a txt file -- all in windows.
...
0
votes
0answers
113 views
Clicking a menu Item on a website using powershell
Hi I am trying to click a link on a web site using powershell , I have got some code and I am able to get to the web site but I am unable to click on the sub menus item.
I did not write the code I ...
0
votes
0answers
32 views
Powershell monitoring for file system changes [duplicate]
I want to do some things when there is a change in a bunch of folders (like send an email). It is working more or less. The problem is I am getting too many notifications. I know I can hack it and ...
-1
votes
1answer
69 views
Automated Script for IIS log rollover schedule change [closed]
Is there any script for automating IIS log Rollover schedule change ? Please give some idea's to implement it further.
1
vote
1answer
306 views
Slow Excel automation?
I'm using the following Powershell script to remove the NumberFormat of the cells in a column for a lot of files so all the fractions will be displayed. The column may have decimal, text or date, etc; ...
2
votes
2answers
719 views
Calling PowerShell From C#
I am using System.Management.Automation DLL which allows me to call PowerShell within my C# application like so:
PowerShell.Create().AddScript("Get-Process").Invoke();
What I am trying to do is ...
0
votes
0answers
231 views
Changing windows settings with powershell on Win7 (Advanced Sharing Settings)
I am trying to change "Password Protected Sharing" setting which is located at: "Control Panel" -> "Network and sharing center" -> "Change advanced sharing settings"
What I would like to do is to ...
0
votes
2answers
434 views
powershell Invoke-Expression with sendkey
Is there a way in which is can pass a parameter through SendKey in Powershell to my custom application
Something like EXPECT in TCL
#!/usr/bin/perl -w
use Expect;
my $exp = new Expect;
my ...
1
vote
1answer
347 views
Azure Enable Web Deploy via automated deployment
Does anyone know of an automated way to deploy a web role to Azure with the "Enable Web Deploy" option enabled? We have an automated acceptance test process that deploys to Azure using Web Deploy to ...
1
vote
2answers
743 views
How to script log in and log out on windows xp
I've found several posts on this site and the internet describing how to log out the current user, but how can I log in a specific user?
Log out (cygwin) can be accomplished this way:
echo "\n" | ...
1
vote
1answer
314 views
Use powershell to populate dialog box from another program
I am writing a script to uninstall and reinstall a piece of software.
Annoyingly, you have to enter a password as part of the uninstall process. (i.e. the uninstaller pops up with a box, the user ...
2
votes
2answers
192 views
Getting error with Powershell and Visio
Hi i am trying to generate visio drwaings using powershell but getting the following error;
PS C:\Users\XXXX\Desktop\Scripts> C:\Users\XXXX\Desktop\Scripts\tempv.ps1
You cannot call a method on a ...
2
votes
1answer
677 views
Feeding input to an interactive command line application
I'd like to feed inputs to a command line interface for Cisco AnyConnect vpncli.exe (v2.3) to automate its (re)connection. It does not take username nor password as command line arguments, but reads ...
0
votes
1answer
611 views
How to connect to existing instance of Excel from PowerShell?
All examples that automate Excel through PowerShell start with this line:
PS> $Excel = New-Object -Com Excel.Application
This seems to be handling a new instance of Excel, e.g. running ...
0
votes
1answer
169 views
How to use a scripting language to change settings in MMC Snapin
I've been building a script to setup a MSSQL server in PowerShell, but I'm stuck at this point. I can't figure out where the SQL Server Configuration Manager SnapIn is saving the data and I can't ...
1
vote
0answers
100 views
Can anyone help me get the Windows Automation snap-in for Powershell [closed]
I looked many places and only one website seems to carry it (codeplex) and for some reason it won't download. any help would be appreciated
1
vote
1answer
707 views
PowerShell and Outlook - Inconsistent
I have a problem with the following PowerShelll script:
$mail = $outlook.CreateItem(0)
$mail.To = "aaa@gmail.com"
$mail.Subject = "PowerShell Test 1"
$mail.Body = "Body..."
$mail.HTMLBody = "This is ...
-1
votes
1answer
156 views
Add a computer to a collection in configuration manager with powershell [closed]
So far I am able to get the computer name for my script. What I would like to do is take that name and have that computer added to the collection under configuration manager without having to use the ...
4
votes
1answer
687 views
Modifying Visual Studio solution and project files with PowerShell
We are currently reorganizing our source code, moving stuff around in a new directory
structure. This impacts our Visual Studio solution and project files, where things like assembly references, ...
0
votes
2answers
579 views
powershell outlook automation namespace
I'm working with automating the opening of a public folder by EntryID from IE with javascript and activex and ran across some errors. To debug I've re-wrote it as a power shell script.
$eid = "HEX ...
2
votes
2answers
787 views
Trigger script when new folder has been added to a location
I'm automating a process and already made a powershell script for that. Now I need to make something which will call that script everytime a new folder has been added to a specific location i.e. a new ...
1
vote
2answers
526 views
Is there a way to automate simple repetitive tasks in mainframe terminal window?
My employer uses TN3270 Plus 2.07 version mainframe emulator. It is quite old version and does not support some of the scripting commands/features like waiting for screen refresh, "if" condition and ...
1
vote
2answers
843 views
Change “Windows font size (DPI)” in Powershell?
I'm using a laptop at office (Windows 7) with a station and double screen and at home without station.
The point is i have to change text size each time i switch from station to standlone laptop ...
1
vote
0answers
226 views
How to change the Windows Search Index location using powershell?
The Default location for windows search index is "C:\ProgramData\Microsoft' .In my case this location is on a SSD with limited space. hence i want to move the index cache to a different drive which ...
0
votes
1answer
184 views
What's a good way to automate uneditable PowerShell scripts?
I have developed a Powershell script that needs to be run automatically daily. This was developed on a PC of mine that has Powershell. I could setup a schedule on my PC to execute it, but that's not a ...
2
votes
2answers
140 views
Scheduling Powershell changes ObjectType
I've written a little script that checks for differences between 2 text files.
$new = get-content $outPutFile
$old = get-content $outPutFileYesterday
$result = $null
$result = ...
0
votes
2answers
466 views
Script a new powershell window with powershell?
I would like to automatically launch a powershell and run a few commands from another powershell (I want to start it from another powershell because of the advantages of functions).
I would like to do ...
0
votes
1answer
1k views
powershell IE automation getElementByID with multiple entries
this only gets the first of the elements, though the backend cgi (such as php) can get all these in an array.
$surl=some url
$ie = new-object -com "InternetExplorer.Application"
$ie.visible = $true
...
2
votes
2answers
556 views
VBS vs PowerShell: Which is lighter?
If I need a script that executes with minimum effort from the system, which would I choose?
By looking at processes at Task Manager:
Memory (Private Working Set)
wscript.exe 2,068K
powershell.exe ...
2
votes
2answers
1k views
Automating IE confirmation prompt with Powershell
I have a nice powershell script that automates a particular website for my daughter. Recently they changed the site and added a nice new feature that would speed up my script by a factor of 10. The ...
1
vote
1answer
444 views
How to use TFS SnapIn “Add-TfsPendingChange -Edit” function in Powershell?
A Powershell script currently contains:
$filePath = "C:\someDir\someFile.ext"
Add-TfsPendingChange -Edit -Item <QualifiedItemSpec[]>
From the help files and documentation, I've not found how ...
0
votes
0answers
165 views
Can i Access 3rd Party Microsoft Management Console (MMC) with Powershell?
Can i Access 3rd Party Microsoft Management Console (MMC) with Powershell?
Maybe there is a Com-Object which i can talk to? Havn't found any examples...
0
votes
2answers
237 views
Using C# or PowerShell Automate Username and Password Entry in 'Connect to ServerName' dialog box
I have a webpage that requires users to enter their credentials in a 'Connect to "ServerName"' dialog box and click OK. I want to automate this login proccess using C# or PowerShell. Is this possible? ...
0
votes
2answers
1k views
Scheduling a powershell script to work in a directory
I'm a little embarrassed to ask this. It seems like such a simple thing. And from all the examples I've found and tried, this should be working, but apparently I'm missing something.
I have a very ...
4
votes
2answers
6k views
How to get IIS AppPool Worker Process ID
I have a PowerShell script that is run automatically when our monitoring service detects that a website is down.
It is supposed to stop the AppPool (using Stop-WebAppPool -name $AppPool;), wait until ...
1
vote
0answers
697 views
Microsoft Team Foundation Server 2010 Power Tools (TFPT) scripted upgrade/install?
I need to provide an automated way to bring machines up to the current version (or later, future versions) of tfpt. Also, I need the Microsoft.TeamFoundation.PowerShell cmdlets to be installed, ...
2
votes
2answers
187 views
What's a good language for scheduling and automating tasks on Windows?
I do a lot of repetitive tasks like running a sas program, uploading the output to a Unix server or downloading it from said server, copying files from one directory to another (where the directory ...
34
votes
2answers
22k views
How to pass an argument to a PowerShell script?
There's a PowerShell script named itunesForward.ps1 that makes the iTunes fast forward 30 seconds:
$iTunes = New-Object -ComObject iTunes.Application
if ($iTunes.playerstate -eq 1)
{
...
4
votes
2answers
1k views
Select option on dropdown list for web ui testing automation in windows powershell
Sorry if this is too easy of a question, but I'm fairly new to Windows Powershell and all of the tutorials I've looked at for dropdown lists show you how to display one to the user.
Anyway what I am ...