No announcements
Found 9314 threads
-
1 Votes
Export-csv string[]
I wrote a function a couple weeks ago that I now use to work around this issue as I got tired of dealing with that myself. It serves as a middle-man between the command you run and ...Unanswered | 4 Replies | 701 Views | Created by Bungee-75 - Monday, February 3, 2014 2:03 AM | Last reply by Boe Prox - Monday, February 3, 2014 8:14 PM -
0 Votes
Export-CSV
I can't get the export-csv work $file Admin 1.0.1 testone $file|Export-Csv ...Unanswered | 2 Replies | 481 Views | Created by Munikur - Thursday, June 7, 2018 1:30 AM | Last reply by Munikur - Thursday, June 7, 2018 12:15 PM -
0 Votes
Export-CSV to Multiple folders
Directory, Name, LastWriteTime, LastAccessTime | Export-Csv -Path Report.csv -Append -NoTypeInformation And I want to create a new CSV or a ...Answered | 1 Replies | 782 Views | Created by Numchuck YumYums - Monday, October 28, 2013 6:57 PM | Last reply by jrv - Monday, October 28, 2013 7:36 PM -
0 Votes
Character Limit of Export-csv
I've been using Invoke-sqlcmd2 (https://github.com/RamblingCookieMonster/PowerShell/blob/master/Invoke-Sqlcmd2.ps1) to query a DB; however when I pipe to export-csv it seems to cut ...Discussion | 6 Replies | 2288 Views | Created by dma2539 - Wednesday, September 21, 2016 10:38 PM | Last reply by dma2539 - Thursday, September 22, 2016 4:42 PM -
6 Votes
Test-path and export-csv
Hi, Yes, that's possible. Pipe your results through select before piping to Export-Csv: .... | Select Computer,Path,Exist,Date | ...Unanswered | 18 Replies | 2377 Views | Created by Salento9 - Tuesday, May 27, 2014 7:47 AM | Last reply by Salento9 - Tuesday, May 27, 2014 3:40 PM -
1 Votes
Import CSV, Edit Data, Export CSV
-Object PsObject -Property $hash } | Export-Csv c:\temp\AllADProcessed.CSV -NoTypeInformation The ...Answered | 10 Replies | 1681 Views | Created by Eric Welshons - Thursday, February 27, 2014 1:05 PM | Last reply by jrv - Thursday, February 27, 2014 8:46 PM -
0 Votes
Export-CSV Help Please
Hello, I found another article which assisted with exporting to csv so now I have the formatting working but it only stores the last printer within the array to ...Unanswered | 17 Replies | 1269 Views | Created by RitaKnap - Monday, November 18, 2013 12:21 AM | Last reply by jrv - Tuesday, November 19, 2013 1:20 AM -
1 Votes
Export variable to CSV
Shouldn't there be pipe into 'Export-Csv'? ... Select Alias, PrimaryEmailAddress | ...Unanswered | 16 Replies | 614 Views | Created by RK-33 - Friday, March 8, 2019 3:18 PM | Last reply by jrv - Saturday, March 9, 2019 9:17 AM -
0 Votes
Powershell Export to csv or text file
httpsUnanswered | 2 Replies | 763 Views | Created by Rajesh.NSR - Tuesday, April 9, 2019 2:26 PM | Last reply by BOfH-666 - Tuesday, April 9, 2019 8:59 PM -
0 Votes
Get-FolderItem how to export csv using UTF-8
as in the Euro currency. Using like this: Get-FolderItem -path "path" | export-csv -NoTypeInformation -Encoding UTF8 ...Discussion | 1 Replies | 472 Views | Created by Luiz F Lucena - Wednesday, June 1, 2016 9:31 PM | Last reply by Bill_Stewart - Wednesday, June 1, 2016 9:36 PM -
0 Votes
Export to CSV no showing all data
='GroupName';e={$grp.name}}, samaccountname, name | export-csv d:\groupswithM.csv -Delimiter ...Discussion | 3 Replies | 410 Views | Created by 0pu5 - Wednesday, September 11, 2019 2:45 PM | Last reply by jrv - Wednesday, September 11, 2019 5:36 PM -
0 Votes
CRM export sample CSV file
Hi, I'm trying to find a sample activites CSV export file so that I can code an import function. I guess all I really need are the headers and anAnswered | 1 Replies | 5723 Views | Created by cosmicnet - Thursday, December 30, 2010 7:13 AM | Last reply by Ercan Top - Thursday, December 30, 2010 9:07 AM -
0 Votes
Error Handling and Export to CSV
type to CSV. While doing this i am coming across users who are no more in our system. I want to export that info as well in my CSV. Now I want to write this error ...Discussion | 4 Replies | 593 Views | Created by Exchanger-007 - Monday, January 29, 2018 4:00 PM | Last reply by jrv - Monday, January 29, 2018 7:37 PM -
2 Votes
Need Help With script, Cannot add Export-CSV Cmdlet.
| ForEach{gwmi win32_operatingsystem -computername $_} | select $props | Export-CSV .\servertime.csv -NoType With PowerShell these things can be ...Proposed | 3 Replies | 634 Views | Created by Tzvi Alikian - Sunday, October 25, 2015 11:36 AM | Last reply by jrv - Sunday, October 25, 2015 2:18 PM -
0 Votes
Export to CSV not Working
object to the screen. Using Export-CSV does not work though. Hence, I am stuck.Unanswered | 20 Replies | 742 Views | Created by SCCMRanger - Tuesday, November 21, 2017 4:20 PM | Last reply by jrv - Wednesday, November 22, 2017 12:07 AM -
0 Votes
Powershell Export-CSV (A custom object full of arrays)
analysis. I have created an object and added each array to the object as a NoteProperty. When I use the export-csv command, the first row has all ...Unanswered | 1 Replies | 1776 Views | Created by djohnson68 - Monday, June 3, 2013 10:31 PM | Last reply by jrv - Tuesday, June 4, 2013 12:24 AM -
1 Votes
Powershell - Get information about users and export to CSV
-LDAPFilter ("(&(givenName={0})(sn={1}))" -f $_.FirstName,$_.LastName) -Properties ... | Select-Object SurName,GivenName,DisplayName,Address,... } | ...Discussion | 2 Replies | 715 Views | Created by Clayss - Wednesday, May 30, 2018 8:16 AM | Last reply by Bill_Stewart - Wednesday, May 30, 2018 12:31 PM -
0 Votes
Windows Powershell Export-CSV column/row value as filename
export CSV by passing these details as the file name. Eg: Filename = SUNTestJan3fri1500AUT.csv, i.e. individual values of columns of Main.csv ...Unanswered | 5 Replies | 845 Views | Created by Karunanidhi Mishra - Monday, October 20, 2014 7:46 AM | Last reply by Sam Boutros - Monday, October 20, 2014 11:38 AM -
0 Votes
Canot export Report into CSV / PDF / Excel
Hi all, I receive feedback from user which I htnk is very serious issue and not able to solve by myself. User can generate CRM report, but when ...Unanswered | 3 Replies | 5890 Views | Created by Henry Tan YH - Friday, October 15, 2010 10:23 AM | Last reply by Henry Tan YH - Monday, October 18, 2010 8:54 AM -
0 Votes
Inconsistent output using Export-Csv - returns partial results -OR- System.Object[]
$matchesCVE.Matches.value $Object | add-member Noteproperty Impact $matchesimpact.Matches.value $output+=$Object} } $output | ...Unanswered | 15 Replies | 1458 Views | Created by Sure-man - Wednesday, July 23, 2014 2:38 PM | Last reply by jrv - Friday, July 25, 2014 3:47 PM - Items 1 to 20 of 9314 Next ›
No announcements