0
votes
2answers
56 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
1answer
24 views
Building a Snap-in Targeting PowerShell V1 and PowerShell V2
How do I build a PowerShell snap-in to target PowerShell v1 and v2? Given that v1 and v2 can't be installed side by side how can I reference the appropriate assemblies and build ag …
0
votes
2answers
77 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 …
2
votes
1answer
64 views
How can I change the IP address of all sites in IIS6 using powershell 1.0?
Using Powershell 1.0 under Windows Server 2003 with IIS 6.
I have about 200 sites that I would like to change the IP address for (as listed in the website properties on the "websi …
0
votes
1answer
51 views
Unable to obtain physical memory informatin using powershell
I am having trouble getting physical memory information from windows management objects using powershell. The columns are generated in the excel spreadsheet yet there is no data f …
0
votes
1answer
22 views
Locate Compressed files on servers
Hi,
I would like to create a powershell script generating a report showing all compressed files/folders on remote servers. By compressed files I mean files compressed using the bui …
2
votes
2answers
218 views
Capturing Powershell output in C# after Pipeline.Invoke throws
I'm running a Powershell test script from a C# application. The script can fail due to a bad cmdlet which causes pipe.Invoke() to throw an exception.
I'm able to capture all the i …
0
votes
1answer
60 views
FTP error in powershell
I'm writing a fairly simply script and I'm trying to upload a file to an ftp server. I'm using the following command
ftp -n -s:upload.txt 292.78.51.12 (I've faked the IP)
It wor …
0
votes
1answer
135 views
PowerShell 1 is not capturing batch file output with tee
PowerShell can call commandline batch files. PowerShell script output can be recorded with the "tee" command. But the tee command does not record the output of batch files inside a …
1
vote
3answers
281 views
Identify the PID of a Executing Batch File in Powershell
Hi,
I need to identify the P(rocess) ID of an executing batch file from a PowerShell (v1.0) script. Can anyone suggest a way of doing this?
Thanks, MagicAndi.
0
votes
0answers
28 views
Power Shell Installation Vista error
When I try to install PowerShell (Windows6.0-KB928439-x86.msu),
I get this message box:
"Class not Registered"
Any help ?
0
votes
1answer
274 views
PowerShell Script to automate data entry to OpenOffice Calc Spreadsheet
Hi,
I would like to be able to automate data entry to an Open Office spreadsheet using a PowerShell script, in the same way that Excel can be automated using PowerShell (see this …
3
votes
3answers
245 views
Can I use PowerShell 1.0 to list processes along with their PIDs and Command Lines?
EDIT by OP: My question presupposed that PowerShell was the best tool for this job. There is a simpler way of achieving my goal. A friend just told me about: iisapp.vbs. It disp …
0
votes
2answers
184 views
c# Powershell. Configure runspace using RunspaceConfiguration.Create
Hi,
I'm trying to find out how the RunspaceConfiguration.Create() method call is used. I want to set the c# hosting up, in a manner that will enable any conceivable powershell scr …
1
vote
2answers
236 views
Ouput redirection/capturing issue with Powershell and Try-Catch and external EXE
First off, either A) I'm not investigating into this hard enough or B) I've found a problem that requires some funky hack. By the way this is posh v1.0.
Here it goes:
A week or s …
