0
votes
2answers
39 views
Make a Powershell function/task run in the background.
I have a function that lets me write the file-path of files to a text file, depending on your input. That sounds confusing, but I don't know of a better way to put it, so here's th …
0
votes
2answers
30 views
Need help with INI file in Powershell
Here is the deal, I am going through an INI file with some code. The idea is to return all of the categories found in the INI file with a regex, and then set at an arraylist = to r …
0
votes
2answers
33 views
Using Powershell to recursively rename directories using a lookup file
I need to rename a lot of directories and their sub directories.
I have a csv file which contains the old directory names and the required new name.
1,blah,old_name1,new_name2,wi …
0
votes
1answer
26 views
Powershell status information
What is the prescribed method for display status or progress information to a user from a Powershell script? For example, "Connecting to database..." Normally I'd print to STDERR. …
0
votes
2answers
45 views
PowerShell: how to copy only selected files from source directory?
I'm a Powershell newbie, trying to get a simple script to run.
I have a list of files that I want to copy from some src_dir to a dst_dir. I wrote a simple script (which is obvious …
2
votes
2answers
61 views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User …
0
votes
2answers
45 views
Powershell, trying to output only the path and lastwritetime on directories
I am trying to write a script that will output any directory that has not changed in over 90 days. I want the script to ONLY show the entire path name and lastwritetime. The scri …
0
votes
2answers
33 views
VBSCript, Batch or PowerShell Script..
I'm trying to run various commands using psexec.exe from sysinternals, what I need is a simple script to read the output of those commands.
For example if everything went Ok, then …
2
votes
2answers
49 views
How to access an indexed property on a COM object from Powershell
I'm using Powershell to talk to the Windows 7 task scheduler service via COM through the Task Scheduler 2.0 interfaces (e.g. ITaskDefinition). I want to pull out a particular trigg …
1
vote
2answers
44 views
powershell: expanding variables in file contents
I have a file template.txt which contains the following:
Hello ${something}
I would like to create a PowerShell script that reads the file and expands the variables in the templ …
4
votes
1answer
32 views
Is there something odd with Powershell and forwards slashes?
As far as I know, a forward slash is not a reserved keyword in powershell
But running the following in cmd pops up an about dialog
"C:\Program Files\TortoiseSVN\bin\TortoiseProc. …
2
votes
2answers
52 views
How to perform IISRESET with Powershell Script
Does anyone know how to perform IISRESET with Powershell Script? I'm using powerguieditor with powershell 1.0 instlled on a windows 2008 box.
0
votes
1answer
26 views
PowerShell custom provider RemoveItem
Hi,
I'm implementing a custom powershell provider. I'm now working on the remove-item cmdlet implementation.
The RemoveItem method has the following signature:
protected overrid …
1
vote
1answer
37 views
Powershell analog to ‘quote words’
What is the Powershell equivalent to Perl's qw() function? In v2 I can write my own with -split, but I'm assuming that there's an exiting method that I just can't find in the docum …
0
votes
3answers
38 views
List all devices, partitions and volumes in Powershell
Hi!
I have multiple volumes (as nearly everybody nowadays): on Windows they end up specified as C:, D: and so on. How do I list these all like on a Unix machine with "ls /mnt/" wi …
