Wednesday, July 11, 2018
Turn off Auto-Restart on Windows 10 in AD Environment
Local Group Policy Editor -> Computer Configuration\Administrative Templates\Windows Components\Windows Update
Double click No auto-restart with logged on users for scheduled automatic updates installations. Change setting to enabled. Click ok. Close Local Group Policy Editor.
Tuesday, April 19, 2016
Downloading Dell Customized VMware ESXi 6.0 ISO
https://dell.com/support -> Browse for a Product -> Select Servers, Storage & Networking -> PowerEdge -> Select Support Platform (See Dell VMware ESXi 6.0 blog for supported platforms) -> Drivers & Downloads -> click Change OS & select VMware ESXi 6.0 -> Expand Enterprise Solutions
Original source: Kiran Poluri from Dell Hypervisor Engineering team
Thursday, September 19, 2013
Wednesday, February 13, 2013
Improve VMware Converter Performance for Conversions
- Open the converter-worker.xml configuration file. It is located in "%ALLUSERSPROFILE%\VMware\VMware vCenter Converter Standalone" folder for Windows Vista or newer or in "%ALLUSERSPROFILE%\Application Data\VMware\VMware vCenter Converter Standalone" for older Windows versions.
- Set the key Config/nfc/useSsl to false and save the configuration file.
- Restart "VMware vCenter Converter Standalone Worker" service.
...
120000
false
...
From: http://communities.vmware.com/thread/333786
Thursday, September 27, 2012
Installing OSX Drivers for a Konica Minolta Bizhub C452
Install Driver
Set Up Basic Printer Settings
- Go to the Apple Menu and choose System Preferences
- Click on the Print & Fax preference icon near the end of the second row
- Click on the lock at the bottom and supply your admin login and password to unlock the preferences
- Click on the + icon below the printer list to add a printer
- In the Add Printer window do the following:
- Click on the IP tab at the top
- Protocol: Line Printer Daemon - LPD
- Address: Put in the full DNS name of the printer (listed below in Setting the Printer Hardware Options)
- Queue: Leave this blank
- Name: Put in whatever makes sense to you
- Location: Put in the room number of the printer (which is in the DNS name below)
- Print Using: change this to Select Printer Software:
- Choose KONICA MINOLTA C452 PS from the list and then click on the OK button
- Click on the Add button
- Go to the Apple menu and choose System Preferences
- Click on Print & Fax
- Double-click on the printer in the list
- In the resulting window, click on the Printer Setup icon at the top right
- In the resulting window, click on the Driver tab at the top
- Set the Function Version, Paper Source Unit, Finisher and Punch Unit, using the info below for each printer:
- Function Version: 3
- Paper Source Unit: LU-204
- Finisher: FS-S27 + JS-603
- Punch Unit: PK-517 (2/3-Hole)
- Check: Hard Disk
- Uncheck: Secure Print Only
Tuesday, September 18, 2012
Adobe Acrobat X Pro (10) won't start or launch - Windows
- Make sure you are connected to the internet.
- Launch a regular CS6 product other than Acrobat or Flash Builder (for example: Photoshop, After Effects, Premier Pro, InDesign, Flash Professional, Illustrator, Dreamweaver.)
- Click on Help->Deactivate .
- Deactivate the application. Quit application.
- Launch a regular CS6 product other than Acrobat or Flash Builder (for example: Photoshop, After Effects, Premier Pro, InDesign, Flash Professional, Illustrator, Dreamweaver.)
- Accept Eula.
- Register trial by signing in. Let the app launch.
- Quit and relaunch the app. Wait for UI to come.
- Click on License This Software button on the UI.
- Click on Sign in .
- Serial number screen will come
- Enter the serial number in the serial number screen and click Next.
- Quit app and relaunch the app while connected on the internet .
Originally from: http://forums.adobe.com/message/4491141
Friday, August 17, 2012
ICMP Ping Blocked on Windows 2008 Server
To enable ICMP traffic:
netsh advfirewall firewall set rule name="File and Printer Sharing (Echo Request - ICMPv4-In)" new enable=yes
To disable ICMP traffic:
netsh advfirewall firewall set rule name="File and Printer Sharing (Echo Request - ICMPv4-In)" new enable=no
Tuesday, July 31, 2012
MySQL Remote Connection Error on Windows 2008 r2
- In MySQL, allow access for user@host (root@% for root access from anywhere)
- As administrator run the command:
- c:/> netsh advfirewall firewall add rule name="MySQL Server" action=allow protocol=TCP dir=in localport=3306
Friday, July 13, 2012
Wednesday, July 11, 2012
Overcoming the 2TB partition size limit in Windows 7
What you'll need:
- o Drive larger than 2TB
- o Acronis True Image 2012 Home Boot Disk (You're resourceful, go find it)
- o Seagate Discwizard (download) *coveat - you must have a spare Seagate or Maxtor drive
- o MiniTool Partiton Wizard (home version and boot disk are free) - OR - Parted Magic (open source)
Steps:
- Install Win 7 on disc, allow setup to do its thing - OR - clone existing drive to >2TB disk
- Inside windows, install Seagate Discwizard *-You will need to physically connect to mobo or via usb adapter a Seagate or Maxtor drive for install to work
- Boot machine using Acronis boot disk
- Choose Tools and then select Extended Capacity Manager - follow prompts to extend capacity of system disc
- Now reboot into Windows
- Run Seagate Discwizard making sure a Seagate or Maxtor drive are connected to your machine
- Choose Add New Disc and locate the partition you just created. In the Model Number column, you will see the model number of the drive preceded by AVD.
- Click next -> Initialize disc in MBR layout -> Click next -> Double click gray status bar of unallocated drive -> Choose formatting options you desire (default settings are fine if you want to use the entire drive) - Click accept -> Click next -> Click proceed and let it do its thing
When Discwizard is done, your OS should recognize there is a new disc present and autorun it. You can verify you've done everything right by looking at your disc layout in windows Disk Management. You might see there is some extra space left over as unallocated space. You can then use the partition tool of your choice to expand either the system partition or the newly created partition to use up this extra space. Be aware, windows backup in Win 7 will not allow you to backup discs larger than 2TB - so if you're planning to use it for backups, don't expand your system disc past an acceptable limit. I used MiniTool to accomplish this as it can do it from within Windows and did not require booting the machine off a boot disc, which is what Parted Magic does.
If you've gotten this far and you're not quite sure what I'm saying, check out Part 1 and Part 2 of the videos listed in one of Seagate's Forums. In this example, they use Discwizard for everything, but unless you're working with a Seagate drive as the >2TB drive, some of the steps won't work, ie: Discwizard won't allow you to extend the capacity of a non-seagate/maxtor drive, even if you have one attached to the system. I've used this method on two separate machines now, one a fresh Win 7 install and the other a cloned drive from a smaller hard drive. In both instances, I have had complete success with zero data loss.
Saturday, June 23, 2012
MySQL Workbench: Copy Table Structure and Data
Select all and execute the statement (lightening bolt icon)
In SQL statement, change table name
Then execute the statement:
INSERT INTO `table2` SELECT * FROM `table1`
Tuesday, June 5, 2012
Installing Coldfusion 10 on Windows 2008
Friday, April 22, 2011
Firefox 4 does not prompt to save tabs on exit
- > browser.showQuitWarning to true
There are several popular solutions to this issue that did not work for me. Some that I came across while researching this issue:
- > browser.tabs.warnOnClose , see http://kb.mozillazine.org/About%3Aconfig_entries
- > browser.warnOnQuit , see http://kb.mozillazine.org/browser.warnOnQuit
- > browser.warnOnRestart , see http://kb.mozillazine.org/browser.warnOnRestart
Coldfusion Dynamic File Path Code
#GetDirectoryFromPath(GetCurrentTemplatePath())#
#GetDirectoryFromPath(GetCurrentTemplatePath())#somedir\somedir2\
Watch your slashes for different OS's.
Monday, April 18, 2011
Prevent Cisco AnyConnect client from starting at boot in Windows 7
start -> type: msconfig.exe
click the tab "startup"
uncheck "Cisco AnyConnect Secure Mobility Client"
click "ok"
click "exit without restart"
Thursday, March 10, 2011
Windows 7: Cannot boot from CD - Code error: 5
The method detailed below works only about 20% of the time and it's a hassle to find a floppy (or even a floppy drive sometimes).
Symptom: When attempting to boot older hardware with the Windows 7 install DVD, you receive the error message "Cannot boot from CD - Code error: 5"
Problem: The Windows 7 install DVD has multiple file systems not supported by some older BIOS software. To read more about the differences, please read: AlfaMikeDelta's posts.
Solution 1: Upgrade your BIOS to a version that supports booting UDF file systems.
Solution 2: Use a linux boot manager to help emulate the missing BIOS instructions. I used the Gujin boot disk and followed the directions from AlfaMikeDelta's above post:
- Download latest version of Gujin from sourceforge
- Use your favourite decompressing software to unGzip/unTar
- Inside the uncompressed folder, you will find a file named "full.img.gz", unGzip this file too.
- Now you will have a file named "floppy.144", this is the floppy image.
- Download a "Floppy Image Writer", for exmple RawWrite (or WinImage).
- Grab a floppy and write the file "floppy.144" to it.
- Put the Windows 7 DVD in the drive.
- Boot your PC with the floppy, it will show a screen searching for boot records in your computer, follow the instructions about the video resolution.
- Once you are inside the GUI, there will be a list of supported booteable media, press the "F" key corresponding to the one that reads "no emul" or "no emulation" (it should be your DVD)
- Pay attention to the message "Press any key to boot from CD or DVD" and do so when it appears.
Installation should continue as planned from there.
Sunday, December 12, 2010
Chrome OS - Saving items to the Download directory
The Problem: Attempting to attach a file to an email in Gmail/Apps Email via Chrome OS, Gmail only allows the user the option to attach files from the "Downloads" directory. Unless you've save a file in this directory, you cannot send it as an attachment in Gmail on your Chrome OS enabled device.
The Reason: Application developers who have created browser/cloud based applications have done so assuming users would be using their apps on traditional operating systems where the user has full access to the filesystem. For this reason, when prompting the user to save something, it brings up a file browser that dumps users into some "default" file path. In the case of Aviary, it dumps the user into /
The Solution: When prompted with a save file dialog or a browse dialog, navigate to - /home/chronos/user/Downloads/ - and save your files there. From this spot, users will be able to access files via the "Downloads" shortcut (control+o) or from within Gmail when attempting to attach files.
Saturday, November 6, 2010
Clear Print Queue in Windows 7/Vista
If you have a long list of hung print jobs in Windows 7 or Vista, you can clear the print queue easily by using these steps.
1. Click Start.
2. Type Command.
3. Right-click Command Prompt and select Run as administrator.
4. Type net stop spooler then press Enter.
5. Type del %systemroot%\System32\spool\printers\* /Q then press Enter.
6. Type net start spooler then press Enter.
The print queue on your Windows 7/Vista system should now be cleared. Type exit and press Enter to exit the command window.
From: http://www.technipages.com/windows-7vista-clear-print-queue.html
Thursday, November 4, 2010
Adobe Acrobat Reader plugin stalls when loading PDF
Issue:
When using Adobe Reader web browser plug-in for Internet Explorer, Firefox, Safari, Chrome or other browser to load a PDF document hosted under IIS (Internet Information Services) 7.5 web server, the PDF document does not load properly or the browser appears to be hanging while loading the document. The browser may stall or display the error message, "a file i/o error has occurred." This behavior is not consistent; other PDF documents serve with no problems.
Note: This issue occurs because IIS 7.5 web server coalesces merged byte-range requests into a single byte-range request. The response generated for such requests is not handled correctly by the Adobe Reader web browser plug-in.
The same issue exists in the Firefox web browser. Firefox is designed to detangle the response and send it to the Adobe Firefox plug-in (which is different from the one in Internet Explorer), but it drops the response as well, resulting in the same behaviors.
The Adobe Reader Safari plug-in shares the same issue.
Solution:
Friday, September 3, 2010
Unable to telnet to remote mail servers on port 25 SMTP
Solution: Your antivirus program may be blocking SMTP connections.
In my case, Avast 5.x blocks all outbound SMTP, IMAP, POP and NNTP connections by default. It's supposed to prompt you when it detects an unsecured connection, but I suppose that's only from actual mail clients, not from the CLI.
Avast specific solution:
1) Open Avast Control Panel
2) Click on Mail Shield
3) Click Expert Settings
4) Click on SSL accounts
5) Add the host name/ip, protocol, port and type of security your connection will use
6) OK your way out of there
If all else fails, turn off Avast/AV completely and test your connection.
This worked for me on Windows XP, Vista and Windows 7.