No announcements
Found 2282565 threads
-
0 Votes
Powershell , extract information from Textfile
$sum = 0 $Entity=@{} foreach ($i in dir -filter *.log -Rec) { ...Answered | 1 Replies | 4386 Views | Created by Samer1221 - Tuesday, June 14, 2011 6:39 AM | Last reply by s.h.s. _ - Wednesday, June 15, 2011 9:04 AM -
0 Votes
Is it possible to specify the multi-value parameter DELIMITER?
Hi, Assuming that your multivalue parameter in this scenario is called ReportParameter1, you could create a hidden single value report parameter whose default ...Answered | 1 Replies | 8886 Views | Created by Bikerdad955 - Thursday, March 26, 2009 9:46 PM | Last reply by Paul van der Eerden - Friday, March 27, 2009 4:08 AM -
0 Votes
Path to delimited textfile?
Another option to consider is using the XMA framework and include the import copy and export copy steps inside it.Answered | 2 Replies | 2952 Views | Created by Soren Svensson - Friday, November 11, 2011 1:40 PM | Last reply by Frank Drewes - Sunday, November 13, 2011 8:02 PM -
1 Votes
How to assign a multi-email-address value to InboxRule condition in Powershell
I want to modify an InboxRule with Powershell.Answered | 2 Replies | 825 Views | Created by UlleTheBulle - Monday, January 12, 2015 11:45 AM | Last reply by UlleTheBulle - Tuesday, January 13, 2015 9:56 AM -
0 Votes
How to extract values between delimiters in a multi-line textfile using PowerShell
I have a large text file written to an array wherein each line contains a part number I am trying to extract. -
5 Votes
How to Convert LDIF to CSV Using PowerShell
We also have a need to parse varying length multi-valued fields We have a need to determine our [publicDelegatesBL] and ...Answered | 7 Replies | 29109 Views | Created by Flowery - Wednesday, January 23, 2013 6:08 AM | Last reply by xbstoller - Wednesday, April 15, 2015 8:58 PM -
1 Votes
How can i find the value between these two delimiters
[SplitText](@String nvarchar(max), @Delimiter nvarchar(10)) returns @temptable TABLE (txt nvarchar(max)) WITH SCHEMABINDING as begin ...Answered | 6 Replies | 3197 Views | Created by RAGS1109 - Friday, February 8, 2013 7:56 PM | Last reply by Peréz - Friday, February 8, 2013 9:29 PM -
0 Votes
How do i work with "arrays"(?)
Now however its come to a point where i dont need the textfiles anymore and i never learned how to run results into something(i think its called arrays?)Answered | 2 Replies | 2218 Views | Created by Plindgren - Thursday, May 3, 2012 8:17 AM | Last reply by thepip3r - Thursday, May 3, 2012 3:06 PM -
2 Votes
Extract 437879_intl_x64_zip.exe through powershell
To do it in powershell, you might try googling with these search words "how to execute a dos command in ...Answered | 10 Replies | 5426 Views | Created by BizSpark Nothstar - Friday, April 8, 2016 12:10 PM | Last reply by BizSpark Nothstar - Monday, April 11, 2016 5:33 AM -
2 Votes
Extract firstname from full name using powershell
I recommend studying PowerShell and how to use it with the base commands and programmatic elements.Answered | 14 Replies | 3665 Views | Created by Admin55 - Wednesday, January 2, 2019 8:35 AM | Last reply by Admin55 - Thursday, January 3, 2019 12:10 AM -
2 Votes
Extract a string between two characters
Following Maxim's suggestion, you can use a general purpose custom function, which extracts from the original text directly, e.g.Answered | 8 Replies | 7056 Views | Created by philorican - Monday, November 14, 2016 1:43 PM | Last reply by Imke Feldmann - Tuesday, April 4, 2017 4:22 AM -
1 Votes
How can i use Like operator in multi-valued paramter against a delimited result set?
How does this tie into SSRS?Answered | 12 Replies | 1175 Views | Created by AdamDoubleYou - Friday, November 9, 2018 9:52 PM | Last reply by Mitarai Queen - Thursday, November 15, 2018 1:17 AM -
2 Votes
Extracting string between delimiting characters in SQL
Try Following Declare @Str Varchar(200) Set @Str='@annie how are you?Answered | 2 Replies | 4575 Views | Created by CK1286 - Sunday, September 11, 2011 10:17 AM | Last reply by Uri Dimant - Sunday, September 11, 2011 10:32 AM -
0 Votes
Incorrect syntax near [comma] - for multi-value parameter
The split function will be parsing a single value into multi-value.Answered | 31 Replies | 3191 Views | Created by B0SSM4N - Wednesday, September 28, 2016 3:44 PM | Last reply by B0SSM4N - Thursday, October 6, 2016 4:54 PM -
4 Votes
Powershell -Replace Textfile List of paths
\example.txt foreach($line in $content) { $newLine += $line.trim('.txt') + "`n" } $newLine |Set-Content .Answered | 8 Replies | 908 Views | Created by PowerCore-GER - Friday, August 21, 2015 7:57 AM | Last reply by PowerCore-GER - Friday, August 21, 2015 10:33 AM -
1 Votes
[Powershell] overwrite a specific line
Grégory Schiro - PowerShell MVP - PowerShell & MOFAnswered | 2 Replies | 22530 Views | Created by Hanz99 - Tuesday, August 3, 2010 5:53 AM | Last reply by Hanz99 - Tuesday, August 3, 2010 9:21 AM -
1 Votes
Powershell Export From Excel to CSV having ; delimiter
It does not work from Powershell where the delimiter is a comma again.Answered | 17 Replies | 33106 Views | Created by PC Norway - Wednesday, May 15, 2013 10:26 AM | Last reply by Jayant Kumar Das - Thursday, April 28, 2016 7:31 PM -
1 Votes
Passing Multi-Value Parameters between reports
This works fine if the sub report just utilizes this value using an IN() statement.Answered | 9 Replies | 7662 Views | Created by PranithPranith - Thursday, April 14, 2011 3:29 PM | Last reply by RickGot - Friday, January 27, 2012 7:20 PM -
0 Votes
How to deal with a data with a delimiter value?
One method is you can use text qualifiers to separate out data from delimitersPlease Mark This As Answer if it solved your issue Please Vote This As Helpful if it ...Answered | 3 Replies | 658 Views | Created by Manesar - Monday, February 22, 2016 4:22 PM | Last reply by Visakh16 - Monday, February 22, 2016 5:15 PM -
1 Votes
Extracting specific data from a string with regex using Powershell
As I said don't use PowerShell often.Answered | 13 Replies | 2731 Views | Created by Patrick.I - Wednesday, March 12, 2014 4:24 AM | Last reply by Patrick.I - Friday, March 14, 2014 3:40 AM - Items 1 to 20 of 2282565 Next ›
No announcements