No announcements
Found 1620881 threads
-
3 Votes
Remove characters from array output
This should work: $computers = Get-ADComputer -Filter 'operatingsystem -like "*server*" -and enabled -eq "true"' | Select-Object name $array = ...Answered | 3 Replies | 596 Views | Created by GWynne - Thursday, May 14, 2020 9:49 AM | Last reply by Rich Matheisen [Ex-MVP (retired)] - Thursday, May 14, 2020 3:05 PM -
0 Votes
Issue repeatedly removing items from array (list)
You want to remove the results from the $second array so that you don't have to scan 30k*30k.Answered | 12 Replies | 1087 Views | Created by KentYeabower - Monday, March 2, 2015 4:14 PM | Last reply by KentYeabower - Wednesday, March 4, 2015 8:20 PM -
0 Votes
Removing Exchange 2007 CAS Array
if it's exh2007, it would be NLB( not CAS Array), just remove the node from NLB, unistall Exchange 2007 if it's exh2010, once you create CAS ...Answered | 6 Replies | 7887 Views | Created by Devang Patel - Friday, January 6, 2012 8:54 PM | Last reply by Damian Scoles (MVP) - Friday, January 13, 2012 1:11 AM -
0 Votes
Removing A CAS Array
Hello, We are upgrading to Exchange 2010 from 2007 and we've created a CAS Array (HEFCECAS.HEFCE.AC.UK) which has two CAS servers as members (HEFCE-CASHUB1 and ...Answered | 4 Replies | 1967 Views | Created by MarkW72 - Tuesday, October 22, 2013 10:37 PM | Last reply by Supawat Rungsarityotin - Wednesday, October 23, 2013 10:00 AM -
2 Votes
Removing CAS Array along with NLB
It's currently pointing to the single server FQDN of Exchange Server 1, so I think all I need to do is remove the array using powershell and then disassemble the NLB in my ...Answered | 3 Replies | 1262 Views | Created by JamiePowellAus - Monday, August 29, 2016 11:23 PM | Last reply by Ed Crowley - Tuesday, August 30, 2016 5:27 AM -
0 Votes
remove the nth item from a system array
You want to remove an item based on it's index position?Answered | 2 Replies | 565 Views | Created by robMerritt - Wednesday, January 31, 2018 2:31 PM | Last reply by robMerritt - Wednesday, January 31, 2018 4:48 PM -
7 Votes
Remove Item from an Array in Power Shell
We need to now split that array, which we do like this: $mgr = $($mgr.Answered | 13 Replies | 31057 Views | Created by Haitham1977 - Tuesday, June 1, 2010 10:46 AM | Last reply by mjolinor - Friday, August 8, 2014 6:22 PM -
1 Votes
removing cas array... what's the issue?
Can we remove it ?Answered | 3 Replies | 656 Views | Created by Phil1975 - Thursday, January 24, 2019 9:03 AM | Last reply by Ed Crowley - Friday, January 25, 2019 5:41 PM -
0 Votes
How to display an Array value in HTML
Read the help for "ConvertTo-Html" for more examples.Answered | 14 Replies | 894 Views | Created by ktitchard - Thursday, August 4, 2016 2:09 PM | Last reply by Hello_2018 - Monday, August 8, 2016 2:02 AM -
0 Votes
how to remove html tags from varchar value
I've used the following UDF to strip HTML tags from SQL: Code Snippet SET ANSI_NULLS ON SET ...Answered | 11 Replies | 17132 Views | Created by Ch. Adeel - Tuesday, May 20, 2008 10:47 AM | Last reply by DreamFactor - Monday, October 19, 2009 4:52 PM -
0 Votes
how do i remove elements from this object (array?)
$Array=import-csv -Path $inputFile -header "NID","courseID" $Array=$Array | sort NID the above only takesAnswered | 15 Replies | 1856 Views | Created by roys99 - Wednesday, November 7, 2012 4:08 PM | Last reply by mjolinor - Thursday, November 8, 2012 2:51 PM -
1 Votes
Unable to remove html tags
I never see HTML similar to what you posted in my threads.Answered | 2 Replies | 1292 Views | Created by te_ve - Monday, November 20, 2017 1:41 AM | Last reply by Richard Mueller - Monday, November 20, 2017 2:49 AM -
1 Votes
Remove filter from Html Form Web part
I've just had this exact problem with a radio button HTML form.Answered | 3 Replies | 3025 Views | Created by sebastian123 - Monday, March 16, 2015 11:25 AM | Last reply by Shaunes001 - Thursday, June 22, 2017 12:46 PM -
0 Votes
How to remove Mailbox Database from Client Access Array
And you can also change the Client Access server or Client Access server array through which the client is connecting to the Mailbox server.Answered | 2 Replies | 4694 Views | Created by kitee - Monday, July 30, 2012 4:49 PM | Last reply by Noya Lau - Tuesday, July 31, 2012 11:40 AM -
2 Votes
is it possible to remove a "line" from a jagged array WITHOUT rewriting entire array or creatinga 2nd one?
as i need to make a few tthousand removals from a file of 40000 lines - do u know which method in PS should be fastest?Answered | 10 Replies | 1870 Views | Created by roys99 - Thursday, November 1, 2012 8:21 AM | Last reply by roys99 - Monday, November 5, 2012 6:40 AM -
8 Votes
How to remove html tags from a column
Of course, if html tag is always at the end of text, we can just split the column by delimiter ("Answered | 10 Replies | 16198 Views | Created by MMTkone - Wednesday, April 15, 2015 6:27 AM | Last reply by Colin Banfield - Wednesday, May 10, 2017 4:56 AM -
0 Votes
Remove HTML tags from a field without using a function
I read each of the items in a variable and used while loop to remove html tags.Answered | 10 Replies | 13008 Views | Created by Julie Elizebeth Sam - Friday, May 27, 2016 11:54 AM | Last reply by Julie Elizebeth Sam - Friday, June 3, 2016 6:25 AM -
8 Votes
Remove Html Tags in text full of them
Just came across this one: ...Answered | 5 Replies | 3254 Views | Created by Jérome Charlon - Thursday, October 8, 2015 10:20 PM | Last reply by Jérome Charlon - Thursday, October 15, 2015 2:46 AM -
0 Votes
SQL arrays
=0 SELECT @SLICE = LEFT(@STRING,@INDEX - 1) ELSE SELECT @SLICE = @STRING -- PUT THE ITEM INTO THE RESULTS SET INSERT INTO @Results(Items) VALUES(@SLICE) ...Answered | 2 Replies | 8084 Views | Created by Ruhani - Friday, May 8, 2009 12:28 PM | Last reply by Vicky Thakor - Wednesday, August 14, 2013 6:37 AM -
0 Votes
CAS Array
I know CAS Array has been removed from Exchange 2013 but want to know why it has been removed ?Answered | 4 Replies | 1051 Views | Created by SAM____ - Monday, November 21, 2016 1:34 PM | Last reply by David Wang_ - Tuesday, November 22, 2016 2:40 AM - Items 1 to 20 of 1620881 Next ›
No announcements