No announcements
Found 2138079 threads
-
0 Votes
Import users from csv
When I added "import-csv -delimiter ";"" before my csv file it started to work.Answered | 3 Replies | 3900 Views | Created by Per_texh - Thursday, February 23, 2012 3:25 PM | Last reply by Per_texh - Friday, February 24, 2012 7:41 AM -
0 Votes
Import users from CSV
Apparently teh container eohter doesn't exist or you have a permissions issue.Answered | 1 Replies | 2465 Views | Created by Bradley Wyatt - Monday, May 7, 2012 6:10 PM | Last reply by jrv - Monday, May 7, 2012 7:32 PM -
4 Votes
Import-csv line by line
The other tricky thing was extracting a file name from the first line of the 'set'.Answered | 16 Replies | 15790 Views | Created by Richard G Kavanagh - Monday, September 12, 2011 10:28 AM | Last reply by damien vanro - Sunday, August 24, 2014 10:51 AM -
0 Votes
Exporting to CSV adding NULL as last line
Data inside the table remain throughout the time. i am just using select * from tableAnswered | 4 Replies | 1078 Views | Created by MalikJaved - Saturday, February 14, 2015 2:47 PM | Last reply by MalikJaved - Saturday, February 14, 2015 4:13 PM -
1 Votes
import users through csv
; Accountant Then use the import-csv cmdlet to load the data.Answered | 10 Replies | 678 Views | Created by enlil - Tuesday, June 16, 2015 6:40 PM | Last reply by enlil - Wednesday, June 17, 2015 6:41 AM -
2 Votes
import-csv and export-csv
Import-CSV "C:\computers.csv" | ForEach-Object { Get-ADComputer $_.computername -Properties description | Select-Object Name,Description } | Export-CSV ...Answered | 3 Replies | 2576 Views | Created by phathuynh27 - Friday, May 9, 2014 10:15 AM | Last reply by phathuynh27 - Tuesday, May 13, 2014 12:40 AM -
0 Votes
Import-CSV commands adds additional objects that does not exist in the CSV file
The header only has ComputerName, username and a list of devices Import-csv -path $path When i ...Answered | 8 Replies | 760 Views | Created by Neo2015 - Monday, March 14, 2016 1:40 PM | Last reply by Neo2015 - Monday, March 14, 2016 2:28 PM -
2 Votes
Import Contact in Exchange with CSV
Hi Please check this, https://www.linkedin.com/pulse/how-mass-import-external-contacts-exchange-20102013-using-secara ...Answered | 8 Replies | 1460 Views | Created by Florian Schinas - Thursday, June 30, 2016 2:47 PM | Last reply by Florian Schinas - Friday, July 1, 2016 9:36 AM -
1 Votes
Automate Import of CSV files
You need to import all your CSV files into staging tables and then combine the data to form final tables.Answered | 4 Replies | 3970 Views | Created by ProfessorFudger - Tuesday, January 26, 2016 1:03 PM | Last reply by ryguy72 - Sunday, February 21, 2016 2:32 PM -
1 Votes
Import-csv without header line
This contains a separator-Line, which would break Import-csv.Answered | 3 Replies | 43311 Views | Created by Jebakumar, Alan - Friday, June 10, 2016 10:40 AM | Last reply by FWN - Friday, June 10, 2016 2:10 PM -
0 Votes
Import-Csv & Export-Csv scripting issue
Ok, the line: Import-Csv C:\...\...\...\...Stats.csv | select sourceEmailAddress, destinationEmailAddress, connectorName, lastMigrationType, lastStatus,id ...Answered | 8 Replies | 4896 Views | Created by Migration Technician - Thursday, November 17, 2011 9:12 PM | Last reply by Migration Technician - Friday, November 18, 2011 7:28 PM -
1 Votes
Import empty values from csv
If im right, Your script import only properties and their value if value exists.Answered | 13 Replies | 3092 Views | Created by SOEMS - Wednesday, January 13, 2016 2:45 PM | Last reply by jrv - Friday, January 15, 2016 11:52 AM -
0 Votes
Comparing multiple CSV then manipulating each line
Read each record (or line from the text file).Answered | 6 Replies | 3860 Views | Created by LlirasChosen - Tuesday, June 14, 2011 7:30 PM | Last reply by Richard Mueller - Sunday, June 26, 2011 12:15 AM -
4 Votes
Importing attribute from a CSV to AD for multiple users
Import-csv 'yourfile.csv' | foreach-object ({ -- This line is grabbing a file that contains columns 2.Answered | 15 Replies | 8663 Views | Created by scott_southbend45 - Sunday, January 12, 2014 3:56 AM | Last reply by scott_southbend45 - Thursday, January 23, 2014 6:00 PM -
1 Votes
Importing from csv and Exporting to csv in Powershell to query AD
If this is the case, you will need to use the Get-Content cmdlet rather than Get-Csv, and parsing the lines will be tricky.Answered | 18 Replies | 8195 Views | Created by Biscuit_Deere - Wednesday, May 22, 2013 7:08 PM | Last reply by Al Dunbar - Thursday, September 19, 2013 3:09 PM -
0 Votes
Syntax for importing names from CSV into PowerShell
If you've already got your csv imported such that "Smith,John" is in one variable, you can rearrange the string the way you want by doing something like ...Answered | 9 Replies | 904 Views | Created by Jay9x - Wednesday, January 28, 2015 8:49 PM | Last reply by jrv - Thursday, January 29, 2015 2:09 AM -
0 Votes
Import Users to AD form CSV
You basically only need the foreach to loop through your csv and the New-ADUser Cmdlet to create the users.Answered | 9 Replies | 2095 Views | Created by C van Dyk - Tuesday, September 8, 2015 12:42 PM | Last reply by HicanNL - Friday, September 11, 2015 7:46 AM -
1 Votes
Import to CSV to Update AD User Attributes
$Users = Import-CSV c:\script\userattributes.csv foreach ($User in $Users) { Set-ADUser ...Answered | 21 Replies | 14327 Views | Created by Blue_man2 - Friday, July 11, 2014 11:58 AM | Last reply by Mike Laughlin - Friday, July 11, 2014 8:43 PM -
1 Votes
Import-CSV impor only the last line from the CSV and said than the User already exists
You can only add the click event once.Answered | 1 Replies | 706 Views | Created by ITKrissi - Thursday, June 27, 2019 2:23 PM | Last reply by jrv - Thursday, June 27, 2019 2:40 PM -
1 Votes
Import-csv - show header only
If you want to do it on the imported .csv, $a = import-csv filename.csv $a[0] | gm -membertype noteproperty | select ...Answered | 3 Replies | 8398 Views | Created by Cyreli - Thursday, December 2, 2010 6:32 PM | Last reply by Tome Tanasovski - Thursday, December 2, 2010 9:46 PM - Items 1 to 20 of 2138079 Next ›
No announcements