Ever since I installed the scheduled software updates on my PowerBook yesterday (running 10.4.7) I can't minimize any of my programs, either by double-clicking on the top tab, or by clicking on the tellow button. Nothing happens! Has anyone seen/heard of this before?
Buffistechnology 2: You Made Her So She Growls?
Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!
Does anyone here have a Motorola Q from Verizon? I am getting myself a new cellphone next week. I was going to get a Treo, but the Motorola Q is cheaper and it seems comparable.
Has anyone replaced their own ipod battery? I'm not worried about going into the machine itself, but whether it was relatively difficult/easy, worked okay, etc.
I got an iPod battery from here: [link]
They have videos you can watch on how to do it - I found their written instructions a little confusing but once I watched the video it made perfect sense.
aurela also asked about this a few months ago - you might want to search for those posts....
In a windows script file in XP home I cannot use appactivate sucessfully with a particular program (I'm guessing written in VB). I can use an the exec method to open the program successfully and capture a process id, but whether I use the window name (displayed in my app list) or the process id, appactivate returns false.
t OK solved the problem. For some reason trying to activate this super buggy app in a loop just hangs for ever. But if I skip the loop and just wscript.sleep 5000 before activating everything is fine. mickey mouse but it works. dunno my you can't DO while appactivate is false, but you can't - maybe constantly trying to get the window keeps the app from fully loading.
thanks tommyrot!
Pro'lly no one knows this, but we're desperate...
Is anyone familiar with running VBScript on an IIS server, with the following code being executed on the server:
set objUser = GetObject("WinNT://MEI-NT/someuserid,user")
In addition to setting up the objUser object, this automatically calls up a Windows authentication dialog thingie, where the user has to enter his ID and password. This is authenticated using Active Directory. The problem is our client changed their authentication server to bring it up to Windows 2003 standards (or something). This broke the GetObject("WinNT://MEI-NT/someuserid,user") function- the server returns a "Permission Denied" error for that line.
Anyway, is anyone familiar with this stuff?
eta: The main IT guy at the client's says he doesn't think it's a permissions issue. Nonetheless, we're trying to set up a site that runs under Administrator, to see if it at least works there....
I would agree with your client's main IT guy. I'm betting that the directory structure changed with the upgrade.
Ah. Win2003 tightens security a bit. It does not allow "2-hop" authentication - i.e. from a user to another server to the authentication server. It only authenticates for users connecting directly.
So, we've seen a recommended workaround and now we're playing with stuff along the lines of:
Set objUser = GetObject("winmgmts:{impersonationlevel=delegate,authority=kerberos:DC1}")
We don't understand winmgmts (WMI) much at all so we haven't gotten it to work yet.
interesting. Thanks for the update.