For issues relating to Windows PowerShell, version 1.0.

learn more… | top users | synonyms

0
votes
1answer
33 views

Alternative to Get-WindowsFeature

I need to list all Windows features on a Windows Server 2008. On Windows Server 2008 R2 the Get-WindowsFeature command is available after "import-module ServerManager". But on Windows Server 2008 ...
0
votes
2answers
79 views

How can you continue executing a PowerShell script, only if it has been called 3 times in 1 minute?

I have a script that is being called via a Windows Scheduled Task, and that task is triggered based on a certain Windows Application Event. It is only critical to execute the script, though, if the ...
2
votes
1answer
328 views

issue with scheduling a powershell script in task scheduler windows 2008 server

I am trying to run a powershell script on the task scheduler but unable to understand the suitable logging command for my script. I want to get this run on the schedule. The script would delete the ...
0
votes
1answer
897 views

Issue with windows task scheduler with running a powershell script in windows 2008 server

This question would seem a very common question but i have done every possible thing for the solution but nothing works for me. I m trying to run a powershell script via batch powershell.exe ...
0
votes
2answers
311 views

PowerShell script to echo files from folders and subfolders and then delete files over X days old

I am curious to understand the possible ways to echo the files in folders and subfolders and generate a output stating the filenames, which are picked up to delete X days old. I wanted to write this ...
0
votes
1answer
134 views

Powershell DBCC CheckDB from Powershell

Im no expert at PS. Was wondering if anyone could help with the following code shown. Found from a dead blog. Im basically trying to get this code re-hashed if possible to allow me to run it ...
2
votes
2answers
966 views

Powershell script to move files and folders including subfolders from one location to another older than x days

I developed a powershell script and its working absolutely fine. The only challenge is the files in the subfolders are not getting moved to the destination. get-childitem -Path ...
3
votes
3answers
375 views

How to limiting files searched by Get-ChildItem (or limiting depth of recursion)?

Background There is a directory that is automatically populated with MSI files throughout the day. I plan on leveraging Task Scheduler to run the script shown below every 15 minutes. The script will ...
0
votes
0answers
83 views

How to use STA mode in PowerShell 1.0?

I'm very awkward in PowerShell and I use it only at home for my own simple tasks under my Windows XP where no available upgrade to PS2. Next test show that my PowerShell 1.0 use MTA mode by default. ...
0
votes
2answers
283 views

Powershell command for waiting one process to get completed

I have power shell script which will perform multiple tasks like uninstalling,removing and again installing wsp solutions.I am facing an issue like the first process is taking too long time for ...
0
votes
1answer
143 views

Powershell Expanding Variables in Where $_ -like $Var

Ok I am trying to do something like the following: Simplified Example: $Var = "MyProduct*MyProduct" $List += "MyProduct 11 MyProduct" $List += "YourProduct 11 YourProduct" $List += "SomethingElse" ...
1
vote
1answer
481 views

PowerShell Compare content of two strings

I am trying to compare the values of two variables but the contents of those two strings are in different orders Example: $Var1 = "item1" $Var1 += "item2" $Var2 = "item2" $Var2 = "item1" How can I ...
0
votes
1answer
169 views

Powershell Issues with .contains function for strings

OK, i am trying to get this script to work and not continuously hit the same computers over and over and am having trouble getting it working. I don't think this is the best way to do it and if you ...
1
vote
1answer
78 views

Powershell if -notlike issue

I am trying to check a list of computer and see if what patches they are missing, this is been giving me trouble for some reason. I'm sure im overlooking something simple but help would be greatly ...
0
votes
2answers
100 views

Foreach loop missing results when run

Im running a script to query the drives of servers to bring back disk space results. The script runs using a text file list of servers for this question i only has one server name in the txt file and ...
1
vote
1answer
110 views

Is there any easy way to check backward compatibility for powershell scripts?

I have written a powershell script and it should work both in version 1 and version 2. Can more than one powershell versions co-exist in a single machine ? Or should i have powershell versions in ...
0
votes
1answer
179 views

How disable the security warning - Power shell

How disable the security warning Run only scripts that you trust While scripts from the Internet can be useful, this script can potentially harm your computer Do you want to run in POWERSHELL I have ...
0
votes
1answer
253 views

Capture output of a batch file in powershell script

I need to capture the output created by a .bat file that is run from within a ps1 file. I'm new to powershell scripting but I know this isn't correct syntax but this best illistrates what I need to ...
0
votes
1answer
84 views

Performing add-content on a generated list of files in powershell

I am super new to Powershell and scripting in general, but I need to make a script that will search through a directory, find all files with a certain extension (excluding files in certain ...
0
votes
1answer
596 views

Powershell & Plink - How to capture the message “Access Denied”

I have a list of ips in a text file. The script reads the list of ips and attempts a connection to each of the ips. This part is working. When the script finds an IP that does not have access to the ...
1
vote
1answer
219 views

Measure-Object -sum all counterSamples from continuous get-counter

I am trying to write a PowerShell script that will continuously poll a performance counter every N seconds then sum the values returned by the counter. My end goal is to have results for a dozen or ...
2
votes
2answers
298 views

PowerShell $PSVersionTable

I have PowerShell 3.0 installed, and I wish to emulate v1.0 When I launch PowerShell 3.0 with -Version 1 $PSVersionTable reports: Name Value ---- ...
1
vote
1answer
156 views

Powershell-Passing in Paramters into a Function chain

Hello I am fairly new to Powershell and are trying to construct a series of functions that are governed by a parent function at the top level. This is the function that I am creating: Function ...
0
votes
0answers
27 views

how to do substractions with in a file in powershell

I have a requirement to do some subtractions within a file at a particular location using Powershell. Below is the file before i apply the math on it. ...
0
votes
1answer
356 views

asp.net + powershell

I have been trying out running a PowerShell script from asp.net with no success for a few days already. The c# is: using (var process = new Process()) { ProcessStartInfo startInfo = new ...
2
votes
3answers
190 views

Set a location to a Variable in PowerShell

I'm very new to PowerShell, and I'm sure this is a simple question but I'm a little stumped. I'm trying to open a Folder, sort by LastWriteTime, and open the Folder at the top of the list. I want to ...
2
votes
2answers
299 views

Why is Powershell ISE showing errors that Powershell console does not show?

I'm running exactly the same script.ps1 file in a Powershell ISE (manually loading the script and pressing F5) and in a Powershell console (executing the script file). They both work but ISE shows ...
2
votes
1answer
233 views

Is there a way for me to get Powershell input and output programatically while powershell is running?

I have a scenario where I need to forward the command and output of a powershell command to another process for logging and processing. I would like this console to be as close to powershell as ...
0
votes
1answer
843 views

Adding results to a new Excel sheet using poweshell 1.0

I have two powershell cmdlets to generate process report and services report. eg: Get-process and Get-services I know export-csv c:\test.csv will export the result to excel sheets. But I need the ...
1
vote
2answers
791 views

GetAccessControl() on a directory using Powershell returns no data

I have a directory whose name contains square brackets, making handling it in Powershell a little problematic. I've seen advice that to get the ACL of the directory, you should use the ...
2
votes
2answers
11k views

Write-Host => Export to a file

I have got a script with some commands such as : Write-Host "Server1" How can I export it to a file, when I tried with " script > export.txt" it doesn't work. Thanks in advance
8
votes
3answers
2k views

Can't get basic Powershell script running inside Team City

Here's my configuration: On the build log, I only see the output of the first two lines, and then "Process exited with code 0" as the last output of this build step. I tried opening a terminal in ...
3
votes
2answers
1k views

Custom Windows Service invokes Powershell to execute commands in exchange 32bit vs 64 bit issue?

I’ve developed a windows service developed in Visual Studio 2010 which performs Exchange 2007 administrative tasks and I’m moving it from a 32-bit development server to a 64-bit production server. ...
4
votes
3answers
7k views

PowerShell: how to count number of rows in csv file?

How can I count the number of rows in a csv file using powershell? I tried something like Get-Content -length "C:\Directory\file.csv" or (Get-Content).length "C:\Directory\file.csv" but these ...
1
vote
1answer
128 views

powershell copy creates extra empty folders

i'm using this simple command to copy over some files and folders that get dropped into a temp folder. copy c:\update_temp\* c:\target\ -recurse -force say update_temp has following structure ...
2
votes
1answer
305 views

Windows Powershell - how to re-display the statuses of some windows services only when they change?

I have just started with Powershell. I have a bat file which simply kicks off the following PowerShell script, which then re-displays the status of services that I am interested every 5 seconds. It ...
0
votes
0answers
489 views

Invoke-expression on remote machine with script file

I try to run a script on remote machine with invoke-expression command help. If i run directly in powershell cmd: enter-pssession pc1 invoke-expression "..." All is fine, if i double click on ps1 ...
0
votes
1answer
391 views

Is there a wrapper to launch Ant from a Powershell 1.0 script?

I'm running a Powershell 1.0 script on Windows XP. The bin directory in the standard Ant distribution contains a number of scripts for launching Ant from various other environments such as DOS, Perl, ...
0
votes
1answer
143 views

Find Three files of the Same Name but create with Different Applications

I am looking for a way to find three or more files of the same name but created with another application. Next action is then compare all three files to see if they were create on the same date and ...
2
votes
1answer
98 views

Can PowerShell 1.0 host a Cmdlet written in .NET 3.5?

When I try to load my Snap-In in PowerShell 1.0 it fails with an error stating that my assembly cannot be loaded due to a dependency on .NET 3.5, which is different to the version of .NET that is ...
2
votes
2answers
910 views

Load-Module equivalient in PowerShell v1

For reasons of script portability, I need to dynamically load snap-ins in a PowerShell script. This is easily accomplished in PowerShell v2 with the Load-Module function. I need to run this particular ...
1
vote
2answers
1k views

Executing powershell.exe from powershell script (run in ISE but not in script)

I'm new to these awesome Power shell world. I have a problem with script and really apreciate your help. I have a script "cmd4.ps1" that needs to run another script "Transfer.ps1" that needs to ...
0
votes
1answer
60 views

Help with Script for Extracting Specific Data from String

Below is a list of data in a single file. I'd like to run this in Powershell. LESCAR85 07/31/10 1700678991 / 70039536 $35.00 SQUADCT8 07/31/10 1698125739 / ...
0
votes
2answers
2k views

Help me use powershell and bcp to load CSV into SQL Server

I'm using bcp to load a table from a CSV exported from another table by someone else far far away, and have run into some issues. My original two problems: one exported field is an int that needs to ...
1
vote
2answers
1k views

Exception Handling in Powershell 1.0

I am using the following code to upload a file using PowerShell 1.0. How can I tell if the upload completed successfully or if there was an error? I need to delete the file if the upload was ...
2
votes
2answers
538 views

Powershell 1.0 - Renaming files fails when script is in a different directory

I am trying to batch rename old log files, but the script only works for me when the script is stored in the same folder as the log files. Here is the code: cls $file = gci E:\logs |? {$_.extension ...
1
vote
2answers
2k views

PowerShell: Retrieve a specific internal XML element

I have an XML document with this structure: <Fruits> <Fruit> <Code>1</Code> <Name>Apple</Name> </Fruit> </Fruits> What is the ...
2
votes
1answer
139 views

Why did a PowerShell script argument need to be copied to a local variable?

I have a very simple Powershell v1.0 script to kill processes by name: $target = $args[0] get-process | where {$_.ProcessName -eq $target} | stop-process -Force which works. However, when I just ...
3
votes
1answer
702 views

How can I get warning output from a PowerShell cmdlet programatically in v1.0?

I'm using PowerShell v1.0 (It is a requirement that I cannot use 2.0) and am having trouble trying to programatically capture the cmdlet output in the Warning stream. In Powershell 2.0 it's easy: ...
4
votes
2answers
1k views

How to pause a Powershell script until some external event has occurred?

I am using a Powershell 1 script to kick off a Python program, and I want to then pause the Powershell until the Python has completed its work. (I have complete ownership of the Python file.) What is ...

1 2