-
Posts
13,520 -
Joined
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by featured_spectre
-
Basically they've been in my loft for over a year. They were put there when we were reorganising the house because of having a baby. Now clearing out ready to move and it is up for sale. It has no sticks and no foot pedal like the newer ones, but still worked when put in the loft. Buyer is aware there is no option to test this when collecting. Collection only for this item. Would like £10 for it Item is also listed on Ebay. Xbox 360 rock band drum set (no pedal) collection only | eBay
-
Xbox 360 slim 4gb version with added 250gb slim HDD. Comes with skyrim and GTA 5. 1 controller (takes AA batteries - not included), a turtlebeach adapter set (no headset with it though), and no power plug from the pack to the wall. I had the xbox tested at CEX and tested as working, but will need formatting because it has my old installs on there. I would like £45 for the package, and ideally collection from LU5, but can ship for an additional £10 This is listed on ebay here - Xbox 360 slim + 250gb HDD + 2 games | eBay
-
Please recommend me an O2 contract upgrade
featured_spectre replied to speckytecky's topic in General Chat
I've just today got the Xperia Z5. Its lovely. Smaller than my z ultra, but I'm loving it just the same. If you want a windows phone, then follow @john s suggestion -
Oh now you're being quackers
-
The software is a good idea...I'll look into that for sure
-
Yeah..It's not a guarantee you'll get the t-shirt...so rather not.
-
I've done most of the MVA stuff. It's not as easy as people think when you get further into it. Azure SQL got me. Lol
-
[movie trailer] Avengers Age of Ultron trailer
featured_spectre replied to Grey-gear's topic in TV & Movies
That should have been in the full and finished product of the film. -
It should return the results in the csv file.
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
Yea if that's where it's stored on your server
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
The top [string] should be your path to the file.
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
Yeah you need to create the csv containing the mailboxes you want to target.
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
If its the latter...here you go param ([string] $inputFile, [system.Management.Automation.PSCredential] $credential) $ErrorActionPreference = "Stop" if (($inputFile -eq [string]::Empty) -or (Test-Path $inputFile) -eq $false) { throw "Invalid file specified ({0})." -f $inputFile } [Reflection.Assembly]::LoadFrom("C:\Program Files\Microsoft\Exchange\Web Services\1.1\Microsoft.Exchange.WebServices.dll") $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService -ArgumentList([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP1) if ($credential -ne $null) { $service.Credentials = $credential.GetNetworkCredential() } else { $service.UseDefaultCredentials = $true; } function GetUnreadInboxMails([string] $emailAddress) { $service.AutodiscoverUrl($emailAddress, {$true}); $mailbox = New-Object Microsoft.Exchange.WebServices.Data.Mailbox($emailAddress) $folderId = New-Object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox, $mailbox) $folder = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderId); $result = New-Object PSObject -Property @{ EmailAddress = $emailAddress UnreadMailCount= $folder.UnreadCount; } return $result; } function ProcessResult($entry) { "Mailbox: {0}" -f $entry.EmailAddress "Unread Mails: {0}" -f $entry.UnreadMailCount "===============================================================================" } $addresses = Import-Csv $inputFile $addresses | % {GetUnreadInboxMails($_.MailAddress)} | % {ProcessResult ($_)} The script has two parameters: 1. The name of a CSV file containing the list of mailboxes to process. The first line should contain the column name “MailAddress” somewhere. The following lines should contain the email address of the mailbox in this column. A PSCredential object containing valid credentials to use for the Exchange access. 2. The credential used for the script needs read access to the inbox folder of each mailbox specified in the file.
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
Do you just need a count? Or do you need a count for each inbox?
- 10 replies
-
- email count
- exchange 2010
-
(and 2 more)
Tagged with:
-
Check the duplex settings. They're usually set to autonegotiate which limits it. It can be bumped to 10/100/1000 which should allow for a faster throughput. I did the same thing for @bodminman.
-
Well there comes a time in every boys life...
-
[movie trailer] Batman v Superman: Dawn of Justice
featured_spectre replied to Arthur's topic in TV & Movies
Doomsday....Awwwwh yis! -
Over estimate how long you think a job will take by 1/4 of the time. If you think an hr, then say an 75 mins etc. Will save you hassle if you hit a stumbling block, and if you complete it quicker, you'll be seen as a miracle worker.
-
If you're playing on PC, get the planter mod. Well worth while. Someone is also making a "hotel" mod which adds a whole floor for a settlement. Consists of 3 beds per floor, stairs to the next floor, lights, bedside table, and partitions between the beds. Progress looks good.
-
Got to go with Draytek, and as @bodminman can attest, I could also assist setting them up
-
That's one of the causes. We ended up making a group policy so that a person couldn't log in twice, regardless of domain level. Worked a charm, but the OST problem still occurred. As a result resetting the profile fixed it thereafter.
