1
vote
1answer
23 views
How to replace a pattern in a file with an argument in Powershell
I have a powershell script that is replacing patterns in a file with the argument passed to the script. I grabbed the algorithm from another site and it works great, except for th …
0
votes
1answer
24 views
Replacement for Vern Buerg’s list.com in 64 bit Windows 7
I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:
p4 sync -n | list
which accepts the output of the perforce command …
0
votes
2answers
36 views
PowerShell STDOUT Formatting Issue
Is there a way to capture STDOUT information from an executable within powershell, without affecting the default behaviour of the STDOUT process? Whenever I attempt to capture out …
0
votes
2answers
45 views
PowerShell Get-Item question
I am new to PS. Here is an example of my function codes:
function foo()
{
# get a list of files matched pattern and timestamp
$fs = Get-Item -Path "C:\Temp\*.txt" | Where …
0
votes
2answers
19 views
Mutually exclusive powershell parameters
SCENARIO
I'm writing a cmdlet for Powershell 2.0 using Visual Studio 2008 and .NET 3.5
the cmdlet requires 3 arguments.
my intended grammar of the cmdlet is something like thi …
1
vote
2answers
61 views
Retrieving data using select SQL statement in Powershell
My goal is to assign the value of the results returned to a variable:
$SqlConnection = New-Object System.Data.SqlClient.SqlConnection
$SqlConnection.ConnectionString = "Server= …
0
votes
2answers
57 views
How to recursively delete an entire directory with PowerShell V2
What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell V2 in Windows 7.
I have learned from several sources that …
0
votes
2answers
40 views
Run remote process by powershell
I have the following line of code to create object to access to a remote server before I associate it with user name, password and process:
$process = [WMIClass]"\\remoteServer\RO …
1
vote
1answer
39 views
Run a program from PowerShell with timeout
I'll write a script that runs a program and wait for it finished. But if the program is not finished within a specified time I want that the program is killed.
0
votes
1answer
14 views
Debug PowerShell using PowerGUI
I use PowerGUI to edit my script. In Visual Studio, I can add command line argument from project properties. However, I cannot find a way to set parameters to the UI to debug my co …
0
votes
1answer
70 views
How to tell powershell to wait for each command to end before starting the next?
I have a powershell 1.0 script to just open a bunch of applications. The first is a virtual machine and the others are development applications. I want the virtual machine to fini …
0
votes
1answer
17 views
Powershell setting COM+ Enforce access checks for this application
Hi,
I'm having problems figuring out what is the Powershell string for choosing the "Enforce access checks for this application" under the Security tab of the properties for that …
0
votes
1answer
73 views
How to transpose data in powershell
I have a file that looks like this:
a,1
b,2
c,3
a,4
b,5
c,6
(...repeat 1,000s of lines)
How can I transpose it into this?
a,b,c
1,2,3
4,5,6
Thanks
1
vote
1answer
49 views
Powershell scripts to backup SQL, SVN
I'm trying to use PowerShell to create some backups, and then to copy these to a web folder (or, in other words, upload them to a WebDAV share).
At first I thought I'd do the WebD …
0
votes
1answer
30 views
WCF + WebClient + Powershell
Hi,
I tried it works fine for the asmx (simple web services) but for WCf do we need to do some thing different.
Can the Same work for the WCF services as i get the error for the W …
