Posts

Showing posts from May, 2019

Windows Server 2019: Active Directory Rights Management Service (Part 2)

Windows Server 2019: Active Directory Rights Management Service (Part 2) // ************************* // Metadata: // DC31:- Domain Controller (Yi.vn) - IP: 10.0.0.31 // DC32:- Exchange Server - IP: 10.0.0.32 // DC33:- Domain Member (Install AD RMS) - IP: 10.0.0.33 // DC34:- Domain Member (Install Certificate Server) - IP: 10.0.0.34 // WIN101, WIN102 clients // Turn off firewall for all // ************************* 1) DC33 > File Explorer > C: > Create New Folder > Folder Name: Policy > Policy Properties - Sharing > Share > Choose people on your network to share with:- Everyone (Permission Level: Read/Write) > Share > Policy:- \\DC33\Policy   > Done > 1) DC33 > Server Manager > Tools > Active Directory Rights Management Services > Active Directory Rights Management Services - dc33.yi.vn (local) - Exclusion Policies - (right-click) Users > Enable User Exclusion > dc33.yi.vn (local) - Exclusion Policies - (right-click)

Windows Server 2019: Active Directory Rights Management Service (Part 1)

Windows Server 2019: Active Directory Rights Management Service (Part 1) // ************************* // Metadata: // DC31:- Domain Controller (Yi.vn) - IP: 10.0.0.31 // DC32:- Exchange Server - IP: 10.0.0.32 // DC33:- Domain Member (Install AD RMS) - IP: 10.0.0.33 // DC34:- Domain Member (Install Certificate Server) - IP: 10.0.0.34 // WIN101, WIN102 clients // Turn off firewall for all // ************************* // -------- // DC31 // -------- 1) DC31 > Server manager > Tools > Active Directory Users and Computers > Active Directory Users and Computers - Yi.vn - Services > New Object User:- Create in:- Yi.vn/Services - Last Name: rmsservices - User logon name:- rmsservices @Yi.vn > Password: **** **** - (x) Password never expires > 1) a) Active Directory Users and Computers - Yi.vn - Services - Name:              Type: rmsservices   User // -------- // DC34 - Install Certificate Server // -------- 2) DC34 > Server manager > Man

Firefox tips: Turn off search suggestions

Firefox tips: Turn off search suggestions 1) about:config 1) a) Set browser.urlbar.maxRichResults to 0 1) b) Set browser.urlbar.oneOffSearches to false

Firefox Tips: Howto re-enable all disabled extensions

Firefox Tips: Howto re-enable all disabled extensions // If you're using Ubuntu, just following step 1) else // goto step 2) // ############### // Step 1 // ############### 1) about:config 1) a) Set xpinstall.signatures.required to false . // ############### // Step 2 // ############### 2) about:config 2) a) Set devtools.chrome.enabled to true . 2) b) Open browser console by pressing:- CTRL + Shift + J 2) b) i) or press F12 (then goto Console) 2) c) Copy & paste the following into browser console:- // Re-enable *all* extensions     async function set_addons_as_signed() {         Components.utils.import("resource://gre/modules/addons/XPIDatabase.jsm");         Components.utils.import("resource://gre/modules/AddonManager.jsm");         let addons = await XPIDatabase.getAddonList(a => true);         for (let addon of addons) {             // The add-on might have vanished, we'll catch that on the next startup