Platform: Windows XP
This past week I was working on a network integration for a business my current company bought. We inherited their outdated installation of MAS 200 from Best Software (ahem, the audacity). Anyhow, we replaced their "suitable only for m0n0wall" 6 year old beige-bomb computers with state o' the art HP Desktops with widescreen displays. Everything worked fine, reinstalling the software on the new profiles worked great.
Except there were "sporatic" problems. Several of the dialogs for MAS have scrolling windows of line items, and we were getting complaints that the users could not highlight the line items at times. Click and nothing happens.
Our local deputy-IT tech figured it out. It turns out this app cannot handle working on the new widescreen 16:10 displays. If the dialog box appears beyond the area that corresponds to the 4:3 section (approximately the left 2/3's of the display) and the user tries to click on the line items in the dialog box, the clicks are ignored. Move the dialog box to the left 2/3's of the screen, and it works. I've NEVER seen anything like this before. We even determined if the window was positioned on the imaginary Mason-Dixon line between the 4:3 and 16:10 spots, you could click the line items on the left hand side of the dialog, but not the right. Note that scrollbars on windows worked fine, as did buttons. Just the line items were affected.
So, the "solution" has a few possibilities. In some cases, we ran the widescreen displays with a 4:3 resolution (i.e. 1024X768 or 1154X864) which of course results in fat wide video that's not crisp. Religiously speaking, I'm opposed to this but many of the users liked the larger display and didn't mind the "fat" view. The other solution is to move the dialog boxes over when a user discovers the window isn't clickable. I'm sure there's a patch or update that negates this issue, but this app is going to be replaced by others in the near future so we're not interested in going through all the other maintenance headaches to change it.
So, if your windows don't work, did you recently switch to a widescreen display? Strange.
Thursday, January 18, 2007
Platform: Windows XP, 2003, Vista (PowerShell)
If you're not using Windows PowerShell, you should be. Here's a way I figured out how to flatten a path into a single directory. In my case I had lots of pictures in different folders that had unique names, so it was a matter of doing the following:
gci, or get-child-item, gets all the files in this directory. It follows all subdirectories with the "--recurse" option. I ran this in the current directory, hence the "." and I just wanted all my JPEG pictures.
Then, pipe it out to cpi cmdlet (copy item) with a -dest and your destination path. It worked GREAT. In the past on Windows I've either done this with Cygwin or with other utilities like XXCOPY ($$$). Free is good, and I'm just getting my feet wet in PowerShell now.
Other sites have discussed this as well.
If you're not using Windows PowerShell, you should be. Here's a way I figured out how to flatten a path into a single directory. In my case I had lots of pictures in different folders that had unique names, so it was a matter of doing the following:
gci --recurse . *.jpg | cpi -dest 'c:\flat'
gci, or get-child-item, gets all the files in this directory. It follows all subdirectories with the "--recurse" option. I ran this in the current directory, hence the "." and I just wanted all my JPEG pictures.
Then, pipe it out to cpi cmdlet (copy item) with a -dest and your destination path. It worked GREAT. In the past on Windows I've either done this with Cygwin or with other utilities like XXCOPY ($$$). Free is good, and I'm just getting my feet wet in PowerShell now.
Other sites have discussed this as well.
Tuesday, October 10, 2006
Platform: Windows XP/2003 (might work with older too)
Now that I'm heavily into virtualization and doing a bunch of physical to virtual (P2V) moves, I end up having NIC conflicts on IP addresses with abandoned NICs that will never make their way back into my system. Of course Windows says "you already have this IP address on another adapter" when I set my new NIC as a virtual machine guest to the same IP as the old physical adapter had. So how to delete the old adapters? It's not like I can put them back in (it's a virtual machine now!) and remove them from device manager. Here's the process:
Drop into a command line.
Type in "set devmgr_show_nonpresent_devices=1"
(don't use quotes, we just set a shell variable)
Type in "devmgmt.msc" This will launch the Windows Device Manager Console.
In the Device Manager Console, from the "View" menu, select "Show Hidden Devices".
From here you can select the old NICs or other devices long gone from your system (the icons will be somewhat lighter than valid ones) and uninstall. Note, really really bad things can happen if you remove something you need, so only take out the NICs you know you can blow away.
Now that I'm heavily into virtualization and doing a bunch of physical to virtual (P2V) moves, I end up having NIC conflicts on IP addresses with abandoned NICs that will never make their way back into my system. Of course Windows says "you already have this IP address on another adapter" when I set my new NIC as a virtual machine guest to the same IP as the old physical adapter had. So how to delete the old adapters? It's not like I can put them back in (it's a virtual machine now!) and remove them from device manager. Here's the process:
Drop into a command line.
Type in "set devmgr_show_nonpresent_devices=1"
(don't use quotes, we just set a shell variable)
Type in "devmgmt.msc" This will launch the Windows Device Manager Console.
In the Device Manager Console, from the "View" menu, select "Show Hidden Devices".
From here you can select the old NICs or other devices long gone from your system (the icons will be somewhat lighter than valid ones) and uninstall. Note, really really bad things can happen if you remove something you need, so only take out the NICs you know you can blow away.
Friday, June 30, 2006
Platform: Linux, Mac OSX, Windows - Firefox
Wondering where the cache is at? Type about:cache in the address bar and you'll get info on the path and be able to view content info as well. I searched Google for a while, and maybe this is a beginner tip for most, but I had a bear of a time finding it. Tip: On Windows it's buried in the local profile Application Data folder.
Wondering where the cache is at? Type about:cache in the address bar and you'll get info on the path and be able to view content info as well. I searched Google for a while, and maybe this is a beginner tip for most, but I had a bear of a time finding it. Tip: On Windows it's buried in the local profile Application Data folder.
Wednesday, August 03, 2005
Platform: Windows Vista Beta 1
As a followup to the "magical shift-f key" post I did a while back, I tested it out today on a Windows Vista Beta 1 install. I was able to do the Shift-F10 trick to get a command prompt and thus run taskmgr, but the Shift-F11 wouldn't give me any detail about what was being installed. So, this little hack "half" works for Vista.
As a followup to the "magical shift-f key" post I did a while back, I tested it out today on a Windows Vista Beta 1 install. I was able to do the Shift-F10 trick to get a command prompt and thus run taskmgr, but the Shift-F11 wouldn't give me any detail about what was being installed. So, this little hack "half" works for Vista.
Monday, July 11, 2005
Platform: Windows (Tested on XP)
Ever heard of IEXPRESS.EXE? Neither had I, so I ran it. It's a simple app that develops self-extracting packages that are like Microsoft patches. The app can be used to created Cabs, extract files, or extract and run a .EXE after extraction. In a small network, it could be a very easy and cheap way to distribute something. This app was just automatically on my system, using XP Pro SP2.
Ever heard of IEXPRESS.EXE? Neither had I, so I ran it. It's a simple app that develops self-extracting packages that are like Microsoft patches. The app can be used to created Cabs, extract files, or extract and run a .EXE after extraction. In a small network, it could be a very easy and cheap way to distribute something. This app was just automatically on my system, using XP Pro SP2.
Wednesday, June 15, 2005
Platform: Windows XP, Nero Burning ROM, Windows Media Player, Windows Mobile
From our buddy Mr. Wizard: A while back I read an article that disabling the IMAPI CD-Burning COM Service will improve performance in Ahead Nero because Windows was conflicting for access to the burner. I disabled it, didn't really notice a big difference but left it disabled. A few weeks later I found that I lost the ability to sync my Windows Media Player 10 to my Dell Axim. WMP wouldn't see the Axim at all. Googling didn't turn anything up, but the event log had an obscure message saying the
ImapiService couldn't start that coincided with my trying to sync. I re-enabled the IMAPI service, and everything works great again.
Screen and transfer your cell phone calls. CallWave…It’s what’s next for your cell phone. Try it risk-FREE!
From our buddy Mr. Wizard: A while back I read an article that disabling the IMAPI CD-Burning COM Service will improve performance in Ahead Nero because Windows was conflicting for access to the burner. I disabled it, didn't really notice a big difference but left it disabled. A few weeks later I found that I lost the ability to sync my Windows Media Player 10 to my Dell Axim. WMP wouldn't see the Axim at all. Googling didn't turn anything up, but the event log had an obscure message saying the
ImapiService couldn't start that coincided with my trying to sync. I re-enabled the IMAPI service, and everything works great again.
Screen and transfer your cell phone calls. CallWave…It’s what’s next for your cell phone. Try it risk-FREE!
Subscribe to:
Posts (Atom)