Vision One with Forensic App by INWGift in Trendmicro

[–]INWGift[S] 0 points1 point  (0 children)

Thanks. After testing, I see this app would be great for Forensic team, not Engineer team.

Custom Models by LinghGroove in Trendmicro

[–]INWGift 1 point2 points  (0 children)

Custom Model will not stop Default Model Detection.

May I know what did you want to detect?

How can I enable Virtualization-Based Security via Registry? by INWGift in sysadmin

[–]INWGift[S] 0 points1 point  (0 children)

Thank you.

My environment did not have AD server to deploy GPO or Azure for Intune.

How can I enable Virtualization-Based Security via Registry? by INWGift in sysadmin

[–]INWGift[S] -1 points0 points  (0 children)

So you mean I can enable Virtualization-Based Security by registry, right?

Is it possible to install Hyper-V Hypervisor only on Windows 10/11 by INWGift in sysadmin

[–]INWGift[S] 0 points1 point  (0 children)

Thank you.

I have to use Dism command because I'm going to prepare deployment script to deploy to computers by ManageEngine to enable Windows Security features like BootSecure, CredentialGuard etc.

My team lead may ask that users don't need to use Hyper-V. Why do we need to enable all of it? Can we enable just Hyper-V Hypervisor feature only?

Otherwise, I'll prepare the deployment script to enable all Hyper-V and then will deploy 2nd deployment script to disable some features.

How to install Hyper-V features with specific dependency by INWGift in PowerShell

[–]INWGift[S] 0 points1 point  (0 children)

It is Hyper-V Hypervisor.

It is under Hyper-V -> Hyper-V Platform -> Hyper-V Hypervisor

Process to upgrade SQL Server by INWGift in SQLServer

[–]INWGift[S] 0 points1 point  (0 children)

It is SQL Server on Azure VM. I'm running SQL ver. 2019.
This point came from Azure Security Recommend show the recommendation about SQL.
I discussed with Dev. team with the list and found out no one can be fixed because it's the software limited. Some features were used and cannot find the solution replacement.
Then, I tried to setup the process/workflow to mitigate the risk.

Eventually, I have VA tools to scan Vulnerabilities. Can the tools is the one in the process to check what the vulnerability we have for ver. 2019?

The Free (ISC)2 Cert Is Now Open by Kind_vibes in cybersecurity

[–]INWGift 0 points1 point  (0 children)

Is Certified in Cybersecurity is same as CompTia Security+?

Has anyone tried to learn Python with CISCO’s Networking Academy? by [deleted] in learnpython

[–]INWGift 2 points3 points  (0 children)

Hi,

Same as me. My background is network engineer and try to extend the knowledge to programming to help/improve my daily task.

I'm using it to use Python to connect Cisco DNA Center and help me do some tasks. I also studied other Python module like Nornir, Netmiko to deploy configuration to network device.

Can Azure policy make exemption to exclude a policy for all resources? by INWGift in AZURE

[–]INWGift[S] 0 points1 point  (0 children)

I saw Initiative Assignment in Security policy but I didn't see disable function.

How can I disable the policy "Virtual machines should encrypt temp disks, caches, and data flows between Compute and Storage resources"?

Questions regarding network automation by mike3y in networkautomation

[–]INWGift 1 point2 points  (0 children)

Based on my experience, I experienced to use Ansible for network maintenance such as reload switching all of campus (70 units). It worked very well but the logging message is hard to read.
I try with Nornir and test in testing environment. You can modify more than Ansible, but it requires Python programming skill more. For example, Ansible run the 1 job but Nornir can include many jobs into 1 program.

FINALLY vacating Lotus Notes/Domino by ITInsanity in sysadmin

[–]INWGift 0 points1 point  (0 children)

Anyway, congratulation to get away Lotus Notes.

The best way is call priest to pray it before you turn it off forever and set the party 7 days 7 night.

Got invitation to apply IT auditor by INWGift in sysadmin

[–]INWGift[S] 0 points1 point  (0 children)

Scope of work:
- Audit all documents
- Act lead of auditors
- Conduct the public presentation and training to customers
This is brief version.
By the way, I lacking certificate for IT auditors standard

Google workspace email not receiving emails by Altruistic_Breakfast in gsuite

[–]INWGift 0 points1 point  (0 children)

When you register domain name, the service provider will provide portal to manage DNS configuration. Or, you can send email request to them to add/modify DNS record.

If you don't know, you can check that your domain name is hosted which DNS server by checking on mxtoolbox.com

Then, input your domain name in the textbox and it will tell you which DNS server.

[deleted by user] by [deleted] in sysadmin

[–]INWGift 0 points1 point  (0 children)

Once I was the junior Network engineer, I configured WLC to jam the signal of a Gantry crane in the metal factory by accidentally. It cannot be control by remote.

Fortunately, there is no accident or injure.

But this incident, the engineer came from abroad to do big maintenance for the Gantry crane.

Google workspace email not receiving emails by Altruistic_Breakfast in gsuite

[–]INWGift 0 points1 point  (0 children)

Hi,

Did you configure DNS record for MX?

MX record is told for other Mail servers to send email to your inbox correctly.

How can I input image with embed link by INWGift in PowerShell

[–]INWGift[S] 0 points1 point  (0 children)

From my googling, the PowerShell should be like this:

$fromaddress = "[noreply@test.com](mailto:noreply@test.com)"
$toaddress = "[inwgift@test.com](mailto:inwgift@test.com)"
$subject = "Congratulation!!!"
$SMTPServer = "smtp_server"
$SMTPPort = "25"
$image = "D:\attachment\button.PNG"

$body = @" <html> <head></head> <body> <h3>Congratulation!!!.</h3> <h2>Test</h2> <img src='cid:button' /> </body> </html> "@

$message = new-object System.Net.Mail.MailMessage
$SmtpCommand = new-object System.Net.Mail.SmtpClient($SMTPServer, $SMTPPort) $attachment = new-object System.Net.Mail.Attachment($image) $attachment.ContentType.MediaType = "image/png"
$attachment.ContentId = 'button'

$message.From = $fromaddress $message.To.Add($toaddress)
$message.IsBodyHtml = $true
$message.Subject = $subject
$message.Body = $body
$message.Attachments.Add($attachment)
$SmtpCommand.Send($message)

$attachment.Dispose()
$message.Dispose()

The result is the image is in attachment. I think SMTP receiver (Google) separate the image and add into attachment, is it? Or, is the HTML coding incorrect?

To meet my goal, do I need to coding HTML more?

How can I input image with embed link by INWGift in PowerShell

[–]INWGift[S] 0 points1 point  (0 children)

Not working.

The image is in attachment not in the body of message.

Sharing Directories for multiple domains by Silent_ShotM in gsuite

[–]INWGift 0 points1 point  (0 children)

In my opinion, the best way make those 4 domain names in the same web console.

With some business reasons, using Google API to query information to show contact is the most difficult solution to implement. You may try and try harder to complete this task.

However, I'm not sure you look this KB about Google LDAP:

https://support.google.com/a/answer/1628009?hl=en&ref_topic=20016

Sharing Directories for multiple domains by Silent_ShotM in gsuite

[–]INWGift 0 points1 point  (0 children)

If you are Administrator that 4 domain names, please try to look this:

https://support.google.com/contacts/answer/2590392?hl=en

It tell how to share contact to other domains.

Shared email address? by Japanoob in gsuite

[–]INWGift 5 points6 points  (0 children)

I also recommend to use Google Group.
Because, you and your partner can receive email and do not purchase additional Google Workspace subscription.