DigiCert has a very handy tool to automatically change the internal and external URLs of an Exchange CAS server:
You can download installation files and ISOs of any of the latest versions of VMWare Tools for each released version of ESX:
→ https://packages.vmware.com/tools/esx/index.html
This is useful if you need support for a certain OS version but are not able to upgrade the ESX host in order to get it (e.g. Windows 10 support on ESX 5.5 "non-u3").
Note that, although officially unsupported, VMWare Tools is technically backwards compatible, meaning you can install a newer version on a guest running on an older ESX host.
Windows 10 is not out of the box supported on ESX 5.5, unless you're running 5.5u3. One of the issues is that earlier versions do not have a compatible video driver for Windows 10.
However, for older versions of ESX 5.5, you can manually download the VMWare Tools and install them:
→ https://packages.vmware.com/tools/esx/5.5u3/windows/index.html
If Outlook displays duplicate reminders for the same event, and you don't actually have two appointments with the same content, or the same PST/OST in your profile multiple, you probably have a corrupt reminder "folder", an internal hidden folder containing your reminders.
You can rebuild the reminder folder by exiting Outlook completely, then starting it with a parameter:
outlook /cleanreminders
You can start Outlook with this parameter through the Run dialog (Start → Run, or WinKey + R).
You can easily move the table to another filegroup by recreate the clustered index on the table:
CREATE CLUSTERED INDEX CIX_YourTable ON dbo.YourTable(YourClusteringKeyFields) WITH DROP_EXISTING ON [filegroup_name]
If the clustered index is unique:
CREATE UNIQUE CLUSTERED INDEX CIX_YourTable ON dbo.YourTable(YourClusteringKeyFields) WITH DROP_EXISTING ON [filegroup_name]
This creates a new clustered index and drops the old one. Because the new index is created in the other filegroup, the table will have been moved to that filegroup.
Assuming you have not configured that specific port as an L-Port, this can happen where the HBA did not completely log on to the fabric. This issue has been known to happen on Emulex HBAs.
To resolve, simply disable and re-enable the port on the SAN switch:
portdisable <port-number> portenable <port-number>
You can check the warranty and support contract status of your HP products online. This includes the base warranty, support contracts and/or carepacks.
When pinning Notepad2 to the taskbar in Windows 10, a duplicate icon is created. Unpinning the duplicate also removes the original icon, leaving you always with two icons on the taskbar.
To resolve, look for and remove the following line (located in the section [Settings2]) from the settings file %APPDATA\Notepad2.ini:
ShellAppUserModelID=Notepad2
Save the file, then unpin and re-pin Notepad2 to the taskbar.
This one-liner will output a list of installed programs, similar to what you get when looking it up through Control Panel → Add/Remove Programs.
Get-WmiObject -Class Win32_Product | Select-Object -Property Name
The advantage of this cmdlet is that you can dump it to a text file:
Get-WmiObject -Class Win32_Product | Select-Object -Property Name > Software.txt
And through PS remoting, you can also run this on remote systems.
You can easily perform 'diff' style text comparisons with Powershell:
Compare-Object -ReferenceObject (Get-Content file1.txt) -DifferenceObject (Get-Content file2.txt)
Here are the download links for the old Java SE 6, 7 and 8 installers. You can download both the JRE and JDK from these pages.
(*) For Java SE 6 and 7, you'll need to create a free Oracle account to download.
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |