Infosek forum 2008 was great… I meet Kevin Mitnick and now I have his magnificent business card … 🙂
 Here is my presentation…
Infosek forum 2008 was great… I meet Kevin Mitnick and now I have his magnificent business card … 🙂
 Here is my presentation…
Where it happened? On HP DL380!!!
This problem occurs when the following conditions are true:
• You enabled, disabled, or updated Hyper-V on a Hewlett-Packard (HP) server.
• The HP Network Configuration Utility was installed.
Â
I enjoyed 3 days of NT Konferenca 2008 in Portoroz.
For atendees of my sessions…
New SMB 2.0 allows higher speeds when transfering files between Windows server 2008 machines and Windows Vista machines.
On gigabit network we can see a drastical improvement in speed and network performance. SMB2.0 allows ACK packets to be sent only after 16 megabyte of data…
You can access harlink-ed files and Directory junction folders over the network… Even if files and folders are not shared (only “linked” to one of your shared folders …)
 Making SYMLINK without any parameters using MKLINK command
 Making SYMLINKD using MKLINK /D command
 Making HARDLINK using MKLINK /H command
 Making JUNCTION using MKLINK /J command
When you are using this command you should know that …
I know you might think IRC is a bit “out”… But… On server irc.freenode.net you can find fantastic channels like:
#Windows – Windows related questions and discussions
#Windows-Server – Windows server realated stuff…
#Powershell – Powershell stuff…
If you want realy quick answers or maybe some advices to folow… Get an IRC client for example mIRC, get connected to server irc.freenode.org and join those channels…
1. Sorted by Displayname (Display name, Mailbox size (MB), Item count, Last logon time, Last logoff time, Last loggedon user account)
Get-MailboxStatistics -Database “mailbox database” | Sort -Property DisplayName | ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=”Mailbox Size(MB)”}, itemcount, lastlogontime,lastlogofftime,lastloggedonuseraccount
2. Sorted by Last logon time
Get-MailboxStatistics -Database “mailbox database” | Sort -Property lastlogontime | ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=”Mailbox Size(MB)”}, itemcount, lastlogontime, lastlogofftime
Get-MailboxStatistics -database “SERVERMailbox Database” | where {$_.disconnectdate -ne $null} | foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid}