python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Import-csv, column name has multiple lines - how do I access data
I have an excel file I convert to csv, and use this to import the data. For some reason, I can't get the data for the sdk column, maybe because it has a line break in the name.
This is what the csv l...

Michele
Votes: 0
Answers: 0
PowerShell Add AD users to AD group by UPN from CSV
Import-CSV "C:\Temp\jacktest.csv" | Foreach-Object {
$aduser = Get-ADUser -Filter "UPN-eq '$($_.UPN)'"
if( $aduser ) {
Write-Output "Adding user $($aduser.SamAccountNa...
Jack Brooks
Votes: 0
Answers: 2
Script to get AD logon name from a list of DisplayName
I'm trying to get a list of AD user's logon names from a list of display names using this script.
Import-Csv 'C:\temp\displaynames.csv'
ForEach-Object {
$name = $_.displayname
Get-...
Matt
Votes: 0
Answers: 3
Importing csv file using COPY FROM on Mac
Using the query editor in the pgAdmin4 app, I would like to import data from a csv file into a table. My code is as follows:
CREATE DATABASE gps_tracking_db
ENCODING = 'UTF8'
TEMPLATE = templa...
Katie Tseng
Votes: 0
Answers: 1