Skip to main content

Questions tagged [powershell-3.0]

Microsoft’s command-line scripting language. V 3.0, which was introduced in Windows 8 and Server 2012, supports code autocompletion (IntelliSense). Remote sessions are more reliable, and there is a bigger selection of cmdlets and built-in functions.

1 vote
1 answer
436 views

validate particular column and its value using powershell

Validate Status Column using powershell. If any status column contain Not-compliant then overall status column needs to be displayed not-compliant. Attached data for your reference. Trying below code ...
Suraj Kumar's user avatar
0 votes
1 answer
407 views

Export data to excel by creating instance of the Excel.Application object in PowerShell

Currently i'm using ImportExcel module to fetch data from multiple csv file and export in single excel file. But due to network restriction from this month I am not able to install importexcel module. ...
Suraj Kumar's user avatar
1 vote
1 answer
772 views

Copy files and only the parent folder the file resides

Copying files but not all the folders, just the one parent/relative folder in which contains the files. Folder and Files structure: ExcelData (Folder) a. File1.xlsx b. File2.xlsx c. File3.xlsx d. ...
Suraj Kumar's user avatar
2 votes
1 answer
2k views

Powershell script to capture Screenshot

Don't want to use third party tool and module. $ie = New-Object -ComObject InternetExplorer.Application $ie.Visible = $true $ie.Navigate("https://www.google.com") $ie.FullScreen = $true ...
Suraj Kumar's user avatar
0 votes
1 answer
116 views

Exception calling "CopyFolder" with "4" argument(s): "The 'destUrl' argument is invalid."

I'm trying to copy local drive folder to targeted folder in online one drive but getting above error. Below is the code tried: - #Load SharePoint CSOM Assemblies Add-Type -Path "C:\Program Files\...
Suraj Kumar's user avatar
0 votes
1 answer
204 views

Run-SCCMClientAction : Connecting to remote server DD4 failed with the following error message

I am running below script on my system to perform all sccm client actions trigger and getting below error. Run-SCCMClientAction : Connecting to remote server DD4 failed with the following error ...
Suraj's user avatar
  • 25
1 vote
1 answer
928 views

Export-CSV column/row value as filename

I've got a bunch of csv files that each look like this: DD-L-1_test.jaun.Csv Parameter, Version, Status OS, 21H2, Compliant Chrome, 107.1.1, Compliant DD-L-2_test.smith.Csv Parameter, Version, Status ...
Suraj's user avatar
  • 25
0 votes
1 answer
617 views

Form with Input Window, where a mechanism shall check if data has been entered

I need it to not close when user press enter or exit so that it mandate for user to make entry for all three box. I am new to powershell so I might be sounding akward but I can't find a good solution ...
Sagar Mahto's user avatar
0 votes
1 answer
30 views

Values from CSV instead of manual values

Question: This Powershell code have manual values defined "Value 1 & value 2" , want these two to be from CSV file. #Value 1 $blockedConnector1 = [pscustomobject]@{ id = ...
Varun's user avatar
  • 1
0 votes
0 answers
2k views

uninstalling the chrome using powershell script

I am trying to uninstall google chrome using powershell script but it shows me a popup to choose uninstall/cancel. How can i supress this by choosing uninstall button? Set-Location 'path\to\my\chrome' ...
ven's user avatar
  • 1
0 votes
3 answers
4k views

netstat filtering logic include/exclude in PowerShell

Currently, we use some logic in PowerShell to do a netstat -ano to get all TCP and UDP results and filter out results that we don't need to see then export it into a CSV. We want the results to only ...
Cory's user avatar
  • 13
1 vote
1 answer
1k views

PowerShell - parse beginning characters out of filenames, so they can be compared properly

Sample of file names in our naming convention using PowerShell: SYSTEM_20201019-01_PRE folder SYSTEM_20201118_file1.txt SYSTEM_20201118_file2.csv SYSTEM_20201118_file3_and_file4.txt SYSTEM_20201019-...
Cory's user avatar
  • 13
3 votes
1 answer
1k views

How to get list of CLSIDs along with their associated COM Object names?

Searching for the ways to generate or get the list of CLSIDs, I found this link, that actually does it. But it's rather incomplete in my opinion, the complete list would include CLSIDs with their ...
Vicky Dev's user avatar
  • 472
3 votes
2 answers
2k views

issue with robocopy on copying files from source to destination of longpath

I am using robocopy $source $destination /MIR, the thing is it does copy files in sync with the source but skippnig the files and directories from source which are having long path names. i would ...
E PSVP LIFE's user avatar
0 votes
1 answer
804 views

Powershell File Creation - Date Created Weird

Creating a script for work, and they want the logs to roll over for 7 days. For example, todays log is xxxxx.log, and tomorrow that will get renamed to xxxxx.01 and the next day xxxxx.02. Something ...
Freddyg103's user avatar
0 votes
1 answer
1k views

Pick up 2 file extensions in a directory using FileSystemWatcher

I am looking to pick up only pdf and rtf files but I get a result of "true" when echoing the variable $watcher = New-Object System.IO.FileSystemWatcher Write-Host "First line of the script, getting ...
mdr's user avatar
  • 1
-1 votes
1 answer
66 views

How to add SAMAccount to results?

Stuck on how to add SAMAccounts (AD usernames) to the results, can anyone help? Get-Mailbox -ResultSize Unlimited | Get-MailboxPermission | where {$_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_....
Top's user avatar
  • 11
1 vote
0 answers
139 views

PowerShell always launches as administrator

I have inherited a legacy Citrix 6.5 system running on Windows Server 2008. Yes I know this stack isn't for server questions but my feeling is that this workstation question as the server is used for ...
munrobasher's user avatar
1 vote
0 answers
59 views

Moving an event log source is not having an effect

I'm having an issue that to be clear I'll describe in steps: I created an event source called Foo in the event log called Application using the following powershell command: New-EventLog -source Foo -...
rsalfonso's user avatar
3 votes
1 answer
9k views

Powershell to set default browser

I created a process using PowerShell to install Chrome. What I am looking to do now is to have PowerShell change the registry for the computer and change the default browser to Chrome. I would ...
Alcyeonnero's user avatar
1 vote
0 answers
346 views

Windows Server 2012 prevent remote desktop account logging out after inactivity

I've got a process that is running from Powershell on an Windows Server 2012 instance in AWS, however it is currently running under a user's account. The issue is that once the remote desktop ...
GoatInTheMachine's user avatar
1 vote
1 answer
3k views

Prompting for a user input to be used on a Powershell command?

I'm trying to execute the code below and it is working: PS C:\> Rename-Computer -NewName TEST -DomainCredential okadamanila\itservices Given that hostname is given on the PS1 file - however, I ...
Ruther Melchor's user avatar
2 votes
2 answers
4k views

Using powershell as default interpreter on Windows 10's SSHD?

When using the default Windows 10 sshd (SSH serv[er|ice] / daemon), how does one set it to login with powershell instead of cmd?
ylluminate's user avatar
  • 1,231
2 votes
1 answer
1k views

Can't start PowerShell 3.0 on windows 10

I'm having a very strange issue where powershell seems to hang on startup, but only on version 3: C:\WINDOWS\system32>powershell -version 2.0 Windows PowerShell Copyright (C) 2009 Microsoft ...
elRobbo's user avatar
  • 131
3 votes
2 answers
7k views

What is psprovider in powershell?

I am new to PowerShell and trying to understand the concept of psprovider. I know I can use Get-PSProvider to show a list of available psproviders All of the help I am finding, assumes I know things ...
James Jenkins's user avatar
0 votes
1 answer
2k views

Powershell Get Computer Names who are connected to the Home Directory

In AD we have Home Directory setup, and it points to a File Server which the folder it their [username]. I would like to know who is connect to those Home Directories by Computer Name by using ...
LMZ's user avatar
  • 11
0 votes
2 answers
985 views

Version of MSI to use for SharePoint online management from PowerShell

The following KB article is a rather vague on which MSI to use in what circumstances: https://www.microsoft.com/en-gb/download/details.aspx?id=35588 There are obviously 32-bit and 64-bit versions. ...
munrobasher's user avatar
2 votes
1 answer
2k views

7z archive include directories matching regex

I would like to archive directories that match a regular-expression pattern (/[0-9]{4}/). Does 7z support this? This doesn't find matching directories: PS> 7z a -t7z C:\Users\<user>\...
Craig's user avatar
  • 909
0 votes
0 answers
89 views

Is there a way to assign an alias to the Remote-Item Cmdlet's -Force parameter?

I would like to use the Remove-Item in a similar manner to how it is used in Unix/Linux: PS> rm -r -f <the_directory> However, this syntax produces an error: Remove-Item : Parameter ...
Craig's user avatar
  • 909
3 votes
1 answer
116 views

Is Exchange User Out of Office?

Finding Users Who Have "Out Of Office" Enabled In Exchange 2010 describes how to use PowerShell to determine if a user has his/her out-of-office setting enabled. However, it requires the use of the ...
Craig's user avatar
  • 909

15 30 50 per page