Admin Applet – Command AD Domains and Trusts – domain.msc Active Directory Management – admgmt.msc AD Sites and Services – dssite.msc AD Users and Computers – dsa.msc ADSI Edit…
ADMAzevedo Posts
The All Users Startup Folder is located at the following path: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp The Current User Startup Folder is located here: C:\Users\%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Step 1: Login to your Exchange 2010 server Step 2: Run Exchange PowerShell as Administrator Step 3: Run PowerShell string Get-MailboxStatistics -Database “Mailbox Database XXXXXXXXXXXXX” | Select DisplayName, ItemCount,…
By default, the UniFi controller will operate on the following ports: TCP – 8080, 8443, 8880, 8843, 6789, 27117, 3478, 8881, 8882, 8080, 8880, 8843 UDP – 3478, 10001,…
net stop w32time w32tm /config /manualpeerlist:ntp02.oal.ul.pt /syncfromflags:MANUAL net start w32time w32tm /config /update w32tm /resync w32tm /query /configuration w32tm /query /status Time /T net stop w32time w32tm /config /manualpeerlist:3.pt.pool.ntp.org…
use [Insert DB Name] select a.FILEID, [FILE_SIZE_MB] = convert(decimal(12,2),round(a.size/128.000,2)), [SPACE_USED_MB] = convert(decimal(12,2),round(fileproperty(a.name, ‘SpaceUsed’)/128.000,2)), [FREE_SPACE_MB] = convert(decimal(12,2),round((a.size-fileproperty(a.name, ‘SpaceUsed’))/128.000,2)) , NAME = left(a.NAME,15), FILENAME = left(a.FILENAME,30) from dbo.sysfiles a