No announcements
Found 2343119 threads
-
0 Votes
Creating AD Groups from CSV import in powershell
, and cant get anything but errors. I know it's something simple i'm doing wrong, maybe someone can help? import-module activedirectory $groups ...Answered | 5 Replies | 6123 Views | Created by Kai Tingey - Thursday, November 12, 2015 12:08 AM | Last reply by jrv - Saturday, March 3, 2018 6:37 PM -
0 Votes
Creating multiple AD Groups from CSV import in PowerShell
DUPLICARE:Unanswered | 2 Replies | 821 Views | Created by JDW23 - Saturday, March 3, 2018 8:13 PM | Last reply by jrv - Saturday, March 3, 2018 10:05 PM -
0 Votes
Getting AD groups of user and exporting to csv
= ******** $reportresultsfile = #Creating variable from composition file $compfile = import-csv ...Unanswered | 1 Replies | 701 Views | Created by rehmankarim786 - Friday, September 14, 2018 12:03 PM | Last reply by jrv - Friday, September 14, 2018 12:13 PM -
0 Votes
Powershell Script to add site content link
WebApplications list from a CSV file $CSVData = Import-CSV -path $webApplFilePath ...Answered | 2 Replies | 796 Views | Created by Paru Upreti - Sunday, April 16, 2017 3:45 PM | Last reply by Paru Upreti - Sunday, April 16, 2017 10:52 PM -
0 Votes
AD-SCCM connector vs. CSV import
an example of how you can write your own connector (based on a CSV import) to bring in custom information from AD. It might seem pretty ...Answered | 4 Replies | 7630 Views | Created by gk_2009 - Thursday, April 14, 2011 8:26 PM | Last reply by gk_2009 - Monday, April 18, 2011 6:39 PM -
0 Votes
Powershell AD Users, groups and CSV
See this thread :) PowershellAnswered | 2 Replies | 667 Views | Created by ScottEvans2013 - Monday, June 20, 2016 2:29 PM | Last reply by ScottEvans2013 - Monday, June 20, 2016 3:42 PM -
0 Votes
import AD from .csv
ok, that is interesting. i downloaded several .csv from tutorial that used those headers. Can you advice a tutorial that shows me how to ...Unanswered | 8 Replies | 480 Views | Created by enlil - Sunday, May 19, 2019 10:50 AM | Last reply by jrv - Sunday, May 19, 2019 12:35 PM -
1 Votes
AD Powershell - Adding ProxyAddresses to Groups from CSV
into an AD Group from Powershell: 1. Create a CSV like ...Unanswered | 2 Replies | 5803 Views | Created by crunch70 - Tuesday, April 22, 2014 5:23 PM | Last reply by crunch70 - Wednesday, April 23, 2014 2:01 PM -
0 Votes
Import AD groups from csv and export their members
Also, I can't figure out how to identify groups members that are orphaned SIDs. Furthermore, how to remove SIDs from group membership (I know a bit in the weeds) but still ...Answered | 5 Replies | 637 Views | Created by WorkingSmarterIn2015 - Wednesday, September 2, 2015 10:30 PM | Last reply by WorkingSmarterIn2015 - Thursday, September 3, 2015 11:34 AM -
3 Votes
Import computers from csv Powershell
That does work but it only imports 1 computer (the last in my list). Import-CMComputerInformation -CollectionName "All Systems" -FileName ...Answered | 5 Replies | 2077 Views | Created by janhoedt - Friday, April 24, 2015 11:36 AM | Last reply by janhoedt - Saturday, April 25, 2015 7:36 PM -
0 Votes
Import User Profile From Groups in AD
Syncronization between Sharepoint Group and Distribution List in the AD is a one way transaction (Sharepoint Group to Distribution List and not the other way round). ...Unanswered | 2 Replies | 4760 Views | Created by Hanif - MCPDEA.Net - Friday, March 6, 2009 11:05 AM | Last reply by Gary Lapointe - Saturday, March 7, 2009 10:59 PM -
0 Votes
Powershell AD Users, groups and CSV
-Prompt 'Enter Template Name' $Groups = Import-Csv -Path C:\temp\Groups.csv foreach ($group ...Answered | 20 Replies | 1111 Views | Created by ScottEvans2013 - Monday, June 20, 2016 2:36 PM | Last reply by ScottEvans2013 - Friday, August 12, 2016 9:22 AM -
0 Votes
import csv into AD
hi, i have about 1000 pc in the AD. i would like to update the description for all the pc's. i have already export the list out as csv ...Answered | 1 Replies | 2680 Views | Created by Andrew5421 - Wednesday, May 16, 2012 8:12 AM | Last reply by Jaap Brasser - Wednesday, May 16, 2012 9:35 AM -
0 Votes
Import CSV into AD
'Starting to update AD Attributes.......' -ForegroundColor White # Import CSV into variable $users $users = ...Answered | 5 Replies | 699 Views | Created by Tom Skubel - Thursday, December 31, 2015 1:11 PM | Last reply by jrv - Thursday, December 31, 2015 11:27 PM -
1 Votes
Create Instance Groups using PowerShell from csv.
for direct membership" $groups = Import-Csv "mycsvpath.csv" foreach ($group in $groups) { New-SCGroup -Name $group.Account ...Unanswered | 2 Replies | 499 Views | Created by Bryan McCuen - Tuesday, September 10, 2019 7:55 PM | Last reply by Bryan McCuen - Monday, September 16, 2019 9:42 PM -
4 Votes
AD groups in a csv.
Hi there, does anyone can provide me a script to create a CSV. out of from AD via powershell scriptAnswered | 34 Replies | 674 Views | Created by Marcus_DJ - Thursday, July 16, 2015 7:55 AM | Last reply by FWN - Wednesday, July 22, 2015 2:47 PM -
0 Votes
Import Documents via Powershell from CSV
, there is a .csv file which stores the destination path and the source path of files, you want to use PowerShell to read the values of this .csv file, then upload files ...Answered | 2 Replies | 3131 Views | Created by TobiWag - Tuesday, January 21, 2014 1:00 PM | Last reply by Patrick_Liang - Wednesday, January 22, 2014 5:44 AM -
2 Votes
Creating Security Groups via CSV
You already have a variable called $Groups which is the same as $_.Groups, so just use that: Import-Csv PathToCSV | ForEach-Object{ ...Answered | 5 Replies | 359 Views | Created by FishNowWorkNever - Tuesday, June 13, 2017 12:05 PM | Last reply by FishNowWorkNever - Tuesday, June 13, 2017 12:59 PM -
3 Votes
Bulk Import using CSV in Active Roles AD Powershell one
Here is the final code I have from above with the splat. I need it to add the users if they are not in Ad ...Answered | 74 Replies | 6950 Views | Created by bigdog704 - Friday, November 22, 2013 4:06 PM | Last reply by jrv - Friday, December 6, 2013 4:35 PM -
0 Votes
Updating AD Groups with CSV
This reflects in the CSV My code to date ...Answered | 7 Replies | 710 Views | Created by ktitchard - Thursday, March 31, 2016 11:03 AM | Last reply by ktitchard - Tuesday, April 5, 2016 2:15 PM - Items 1 to 20 of 2343119 Next ›
No announcements