You don´t need diskpart to configure your partitions on your system. i had a task to reduce/shrink the active partition by 2 gb.
Powershell snippet
Resize-Partition -DriveLetter C -Size ((Get-Partition -DriveLetter c).Size - 2GB)
You don´t need diskpart to configure your partitions on your system. i had a task to reduce/shrink the active partition by 2 gb.
Powershell snippet
Resize-Partition -DriveLetter C -Size ((Get-Partition -DriveLetter c).Size - 2GB)
Are you annoyed by the new look from outlook 2016, you can change it a little
https://www.msoutlook.info/question/755
You have some Windows Clients in your Enviroment that brings that message in your eventlog dhcp client? Check all your DHCP Server if any dhcp scope is disabled
You are searching Smart Card Removal Policy service in a german windows version?
in german called
Richtlinie zum Entfernen der Scmartcard
Check your server with this powershell command
Get-HealthReport servername | where { $_.state -eq “Offline”}
now you should see your imap proxy is offline
bring back to life with
Set-ServerComponentState -Identity servername-Component IMAPProxy -State Active -Requester HealthAPI
found here
See Microsoft KB
More information about troubleshoot imap
https://technet.microsoft.com/en-us/library/ms.exch.scom.imap%28v=exchg.150%29.aspx
Challenge: Employee want to create a contact object in active directory ou, to manage it selfs. So they can add and remove external e-mail address on his manage distribution groups.
You need some powershell commands for this.
Most commands found here, thanks to paul for his great blog post.
https://practical365.com/exchange-server/exchange-server-role-based-access-control-in-action/
Get-ManagementRoleEntry “Mail Recipients\*” | Select Name
Get-ManagementRoleEntry “View-Only Recipients\*” | Select Name
New-ManagementRole -Parent “Mail Recipients” -Name “Custom Role – Mail Contacts”
New-ManagementRole -Parent “Mail Recipient Creation” -Name “Custom Role – Mail Contacts Creation”
Get-ManagementRoleEntry “Custom Role – Mail Contacts\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Get-ManagementRoleEntry “Custom Role – Mail Contacts Creation\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Get-ManagementRoleEntry “Custom Role – Mail Contacts\*”
Get-ManagementRoleEntry “Custom Role – Mail Contacts Creation\*”
New-ManagementRole -Parent “View-Only Recipients” -Name “Custom Role – View-Only Recipients”
Get-ManagementRoleEntry “Custom Role – View-Only Recipients\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-OrganizationalUnit”
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-Recipient”
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-Contact”
Get-ManagementRoleEntry “Custom Role – View-Only Recipients\*”
New-RoleGroup –Name “Contact Editor” –Roles “Custom Role – View-Only Recipients”, “Custom Role – Mail Contacts”, “Custom Role – Mail Contacts Creation”
Please see this great blog entry https://www.altaro.com/hyper-v/device-naming-network-adapters/