This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable Windows defender tasks in Normal mode | |
Get-ScheduledTask | Where-Object { $_.TaskName -like "Windows Defender*" } | Disable-ScheduledTask | |
# Reboot to safe mode (Boot option: Safe mode) | |
msconfig | |
# Disable these services in safe mode | |
foreach ($SVC in "Sense", "WdBoot", "WdFilter", "WdNisDrv", "WdNisSvc", "WinDefend") { Set-ItemProperty -Path ("HKLM:\SYSTEM\CurrentControlSet\Services\" + $SVC) -Name Start -Value 4 } | |
# Reboot to normal mode (Startup Selection: Normal startup) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2022-12-16T06:02:31+08:00 | |
416446 ALPLUSSHINE | |
14548 ALPRO PHARMACY | |
355727 ALQARNI MEDITECH SDN BHD | |
884510 ALR SYNERGY LOGISTIC SDN BHD | |
509331 ALROHMAH TOURS AND SERVICES SB | |
45070 ALTAMIJ CAPITAL RESOURCES | |
7500 ALTEL COMM | |
22103 ALTER NATIF ENTERPRISE | |
604256 ALTIS HOLIDAYS SDN BHD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69.63.176.0/20 | |
66.220.144.0/20 | |
66.220.144.0/21 | |
69.63.184.0/21 | |
69.63.176.0/21 | |
74.119.76.0/22 | |
69.171.255.0/24 | |
173.252.64.0/18 | |
69.171.224.0/19 | |
69.171.224.0/20 |
ISP | PPPoE | MTU | Data vlan | Voice vlan | IPTV vlan |
---|---|---|---|---|---|
[check] |
1492 |
500 |
400 |
600 |
|
:check: |
1492 |
621 |
822 |
823 |
|
:check: |
1492 |
||||
:check: |
1492 |
623 |
|||
:check: |
1492 |
629 |
|||
❓ |
1492 |
||||
❓ |
1492 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### Contents of the preconfiguration file (for stretch) | |
### Localization | |
# Preseeding only locale sets language, country and locale. | |
d-i debian-installer/locale string en_US | |
# The values can also be preseeded individually for greater flexibility. | |
#d-i debian-installer/language string en | |
#d-i debian-installer/country string NL | |
#d-i debian-installer/locale string en_GB.UTF-8 | |
# Optionally specify additional locales to be generated. |
This is a dicussion to manage EOL (end of line) of text file store in GIT
repository.
There are 2 EOL style:
-
LF
(0x0A
): Linux Style - Utilize in Linux text files and Git Repository -
CRLF
(0x0Dh 0x0A
): Windows Style - Utilize in Windows text files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;****************************************************************************** | |
;** ** | |
;** Copyright 2009-2019 Intel Corporation. All Rights Reserved. ** | |
;** ** | |
;** The material contained or described herein and all documents related ** | |
;** to such material ("Material") is owned by Intel Corporation or its ** | |
;** suppliers or licensors, and title to such Material remains with Intel ** | |
;** Corporation or its suppliers or licensors. The Material contains ** | |
;** proprietary information of Intel or its suppliers and licensors. The ** | |
;** Material is protected by worldwide copyright laws and treaty ** |
NewerOlder