- Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
- You can do this through the Change Edition option in the Extras menu in MAS.
- Open the Group Policy Editor. Search for "Edit Group Policy" in search or run
gpedit.msc.
| <html> | |
| <head> | |
| <title>Animated Sparkline using SVG Path and d3.js</title> | |
| <script src="http://mbostock.github.com/d3/d3.v2.js"></script> | |
| <style> | |
| /* tell the SVG path to be a thin blue line without any area fill */ | |
| path { | |
| stroke: steelblue; | |
| stroke-width: 1; | |
| fill: none; |
| <html> | |
| <head> | |
| <title>Simple Line Graph using SVG and d3.js</title> | |
| <script src="http://mbostock.github.com/d3/d3.v2.js"></script> | |
| <style> | |
| /* tell the SVG path to be a thin blue line without any area fill */ | |
| path { | |
| stroke: steelblue; | |
| stroke-width: 1; | |
| fill: none; |
| #persistent | |
| current_scale := 100 ; scale value you are currently in | |
| next_scale := 125 ; scale value you want to switch to next | |
| is_scaled := 0 | |
| return | |
| ; Ctrl + Win + F1 toggles main monitor between 2 scale values | |
| ^#F1:: |
| #Requires AutoHotkey v2.0 | |
| current_scale := 100 ; scale value you are currently in | |
| next_scale := 125 ; scale value you want to switch to next | |
| is_scaled := 0 | |
| ; Ctrl + Win + F1 toggles main monitor between 2 scale values | |
| ^#F1:: | |
| { | |
| global is_scaled | |
| global next_scale |
gpedit.msc.