Forum Replies Created
-
AuthorPosts
-
October 5, 2022 at 5:59 pm in reply to: SCAP Compliance Checker (SCC) not able to scan computers in Active Directory. #51467
Founder & CEO, EM @QUE.COM
KeymasterRESOLVED.
I run the SCAP to one of the member server, to scan all member servers and workstations.
Completed the scan.I run the SCAP to one of the domain controller (DC), to scan all domain controllers.
Completed the scan.One thing to note.
I created a new policy for TCP 139 and 445, linked to GPO and enforced.I’m happy I was able to find a solution. I hope this help you.
Founder & CEO, EM @QUE.COM
Keymasterwe can use powershell to check if it is present on the system, if it is, we can also use powershell script to uninstall it.
1. check if it is present:
Get-WindowsCapability -Online -Name “SNMP*”2. Then to install it run:
Remove-WindowsCapability -Online -Name “SNMP.Client~~~~0.0.1.0”Founder & CEO, EM @QUE.COM
KeymasterMake sure that SNMP services are running:
Get-Service SNMP*
Founder & CEO, EM @QUE.COM
KeymasterYou can enable all rules or just a specific one:
Get-NetFirewallrule -DisplayName *snmp* | Enable-NetFirewallRule
Get-NetFirewallrule SNMP-Out-UDP | Disable-NetFirewallRulesource: woshub.com/install-configure-snmp-service-windows/
Founder & CEO, EM @QUE.COM
KeymasterCreate a new git repository.
Go to github.
Log in to your account.
Click the new repository button in the top-right.
Click the “Create repository” button.$ git remote add origin https://github.com/username/new_repo
$ git push -u origin masterexample.
git remote add origin https://github.com/KINGdotNET/new_repo.git
git branch -M main
git push -u origin maingit remote set-url origin https://github.com/KINGdotNET/new_repo.git
git remove -v // check the status of remote originFounder & CEO, EM @QUE.COM
KeymasterFrom Moralis.
This is how to create your own NFT, build a layer using photoshop.Founder & CEO, EM @QUE.COM
KeymasterIf you have untracked file, simply issue the command.
git add *
git commit -am ‘your comment’
git push [enter] – This is to upload all file/uploaded changes.Founder & CEO, EM @QUE.COM
Keymaster# force push
git push origin +branchnameFounder & CEO, EM @QUE.COM
KeymasterWhen I run
npm install, it returns withERR! code EINTEGRITYThis works for me.
npm cache clear –force && npm install –no-shrinkwrap –update-binaryOR
npm config set package-lock false
other alternative options.
https://stackoverflow.com/questions/47545940/when-i-run-npm-install-it-returns-with-err-code-eintegrity-npm-5-3-0Founder & CEO, EM @QUE.COM
KeymasterMini Self-Balancing Robot – RasPi + Arduino
https://hackaday.io/project/179251-mini-self-balancing-robot-raspi-arduinoFounder & CEO, EM @QUE.COM
KeymasterLukasz Bien – Project using Load Balance.
https://www.youtube.com/channel/UCQ0uaqRX5uih_bQfa7G7jhgFounder & CEO, EM @QUE.COM
KeymasterAdded to the list.
https://www.vscodecloud.com/ – I love working using Visual Studio, this is my first option.
And these two cloud IDE.
https://codeanywhere.com/
https://codesandbox.io/Founder & CEO, EM @QUE.COM
KeymasterAnother guide using steemjs, foreign language but the video should be enough to learn.
Founder & CEO, EM @QUE.COM
Keymaster// I cloned nitrous
git clone https://github.com/hive-engine/nitrous.git
cd nitrous
//check branch
git branch -a
// Checkout branch for PESOS
git checkout scotty_pesos//configured the server, tested.
//created new branch scotty_pesos_v2 with all changes.
git checkout -b scotty_pesos_v2//add my nitrous forked so I can update.
git remote add nitrous https://github.com/KINGdotNET/nitrous.git//check
git remote -v
nitrous https://github.com/KINGdotNET/nitrous.git (fetch)
nitrous https://github.com/KINGdotNET/nitrous.git (push)
origin https://github.com/hive-engine/nitrous.git (fetch)
origin https://github.com/hive-engine/nitrous.git (push)// upload new branch to my forked.
git push –set-upstream nitrous scotty_pesos_v2//continue updating new forked e.g., scotty_pesos_v2
`-
This reply was modified 5 years ago by
Founder & CEO, EM @QUE.COM.
-
This reply was modified 4 years, 4 months ago by
Founder & CEO, EM @QUE.COM.
Founder & CEO, EM @QUE.COM
KeymasterI have no luck playing the COD – Zombie since I purchased the Outbreak FREE week.
Should be live from Feb 25 to March 5.How about you?
-
This reply was modified 5 years ago by
-
AuthorPosts
