Powershell

Powershell – Get Public IP

Today I write a quick tips 🙂 Sometime, we need to know the external public IP address for a computer using Powershell. This can be done easily with a Web Service of ipify.org.

Powershell Public IP

Powershell Public IP

(Invoke-WebRequest -uri "https://api.ipify.org/").Content

More

You can get more information about ipify.org here

Share
Microsoft Office

Office – Force Add-ins activation by GPO

When you install plugins / Add-in for Microsoft Office, this add-in could be automatically disabled by Office depends on the ressouces needed, time to load, etc. This feature could be great, but sometime, this add-in must be enabled all the time. Fortunately, Group Policy can forces the Add-ins activation. Moreover, we can allow the user to change it or not.

Office Add-ins Activation

Office Add-ins Activation

Let’s see how to do that with an example: The Symantec Enterprise Vault Add-in:

Continue reading

Share