Microsoft: Windows 7 and Office 2010 Thread
A buddy of mine is using his wife's computer (with her permission of course) for occasional Media Center use since the PC is within HDMI cable distance of their TV. What this means is that most of the time the computer should be outputting audio to the regular analog line out for 2.0 stereo "computer sound." When my buddy wants to run Media Center, he has to manually go into the sound control panel, select the HDMI sound device as the playback device, and then start Media Center. What my friend is looking to do is:
1) create a single [something] that a) changes the sound output on the computer b) starts Media Center c) puts the sound output back to line out when Media Center closes
2) be able to map the above [something] to the green button on a WMC remote
I told him to look into the commandlets included with PowerShell to see if there were any for audio device manipulation but that was an admitted shot in the dark on my part.
1) create a single [something] that a) changes the sound output on the computer b) starts Media Center c) puts the sound output back to line out when Media Center closes
2) be able to map the above [something] to the green button on a WMC remote
I told him to look into the commandlets included with PowerShell to see if there were any for audio device manipulation but that was an admitted shot in the dark on my part.
http://www.vistaaudiochanger.com/Downloads.aspx
Well, if you're going with multiple sound devices then there's no "easy" solution, but there are solutions.
He's going to have to go with some kind of software that can manipulate sound settings. There's a freeware called Autohotkey that can do pretty much anything you can do with a mouse and keyboard and I'm sure he can create a macro for that. I actually use that myself in my Media Center setup, except I use it to change the display not the sound. Here's what such a script looks like:
So you make a script like that (very easy once you figure out basic commands), you make it open your sound control panel and you basically tell the script to navigate with the keyboard to apply your desired setting, and then you compile this script into an EXE file. After that all you need to do is run the EXE to change your sound setting, you don't even need Autohotkey installed on your system.
So your buddy could create a shortcut and click it every time he's loading the Media Center to change the sound setting. He can get as fancy as he wants and he can make the script do everything for him, like change the sound, display, resolution, etc. and launch Media Center all from one shortcut.
This is kind of what I do, except I also have an IR receiver hooked to my PC and I use Girder, which listens for IR events and translates them to key presses or launches programs.
So when I use my Logitech Harmony remote and press "watch Media Center", the remote turns on the TV, sets the input to HDMI2 (my PC), turns on the stereo, sets the sound input to coax, sends a wake signal to the PC (only matters if it's suspended), and tells Girder to launch my "start Media Center" script. My script changes the resolution to 1920x1080, changes the output from my monitor to my TV, and then launches Media Center. Then I navigate my Media Center using the remote. There's also an "off" script that does all this in reverse.
So with one button on the remote it does all this crap. It would be easy to make the script change sound settings in addition to the video settings. If your friend is serious about this stuff he should get a Harmony remote and an IR receiver, and install Girder. But if he just wants to automate the sound thing he can write a script for that.
He's going to have to go with some kind of software that can manipulate sound settings. There's a freeware called Autohotkey that can do pretty much anything you can do with a mouse and keyboard and I'm sure he can create a macro for that. I actually use that myself in my Media Center setup, except I use it to change the display not the sound. Here's what such a script looks like:
; This script loads the Windows 7 Screen Resolution control panel and loads Media Center.
; This script is to be used with the associated close_media_center.ahk script
; In this example I have two displays, a monitor at 1680x1050 and a TV at 1280x720
; When I run Media Center I clone the image and set the resolution to 1280x720
; When I'm dowe with the Media Center, I load a profile that outputs only to the monitor at 1680x1050
; Tested with Windows 7 beta 7000, Autohotkey 1.0.47.06, nVidia GeForce 8800GT in SLI and driver 181.20
; Suggestions: belzebutt at yahoo.com
SetTitleMatchMode, 1
; If Media Center is already running, bring it to top and issue Green Button command
IfWinExist, Windows Media Center
{
WinActivate
Send #!{Enter}
}
; If not, launch Media Center
else
; If resolution is not 1920x1080, change to the profile that outputs to the TV with that resolution
if A_ScreenHeight != 1080
{
; Load Screen Resolution control panel
Run, "desk.cpl"
; Wait for the window to appear, with timeout of 5 seconds
WinWait, Screen Resolution, , 5
WinActivate
; To make Display #2 (TV) the only display:
Send {Tab}2{Tab}s{Tab 6}{Enter}
; To Clone the displays:
; {Tab 4}d{Tab 6}{Enter}
; Wait for the Display Settings window to appear and confirm settings
WinWait, Display Settings, , 5
WinActivate
Send {Left}{Enter}
Send #!{Enter}
WinWait, Windows Media Center, , 5
WinActivate
}
else
{
Send #!{Enter}
WinWait, Windows Media Center, , 5
WinActivate
}
; This script is to be used with the associated close_media_center.ahk script
; In this example I have two displays, a monitor at 1680x1050 and a TV at 1280x720
; When I run Media Center I clone the image and set the resolution to 1280x720
; When I'm dowe with the Media Center, I load a profile that outputs only to the monitor at 1680x1050
; Tested with Windows 7 beta 7000, Autohotkey 1.0.47.06, nVidia GeForce 8800GT in SLI and driver 181.20
; Suggestions: belzebutt at yahoo.com
SetTitleMatchMode, 1
; If Media Center is already running, bring it to top and issue Green Button command
IfWinExist, Windows Media Center
{
WinActivate
Send #!{Enter}
}
; If not, launch Media Center
else
; If resolution is not 1920x1080, change to the profile that outputs to the TV with that resolution
if A_ScreenHeight != 1080
{
; Load Screen Resolution control panel
Run, "desk.cpl"
; Wait for the window to appear, with timeout of 5 seconds
WinWait, Screen Resolution, , 5
WinActivate
; To make Display #2 (TV) the only display:
Send {Tab}2{Tab}s{Tab 6}{Enter}
; To Clone the displays:
; {Tab 4}d{Tab 6}{Enter}
; Wait for the Display Settings window to appear and confirm settings
WinWait, Display Settings, , 5
WinActivate
Send {Left}{Enter}
Send #!{Enter}
WinWait, Windows Media Center, , 5
WinActivate
}
else
{
Send #!{Enter}
WinWait, Windows Media Center, , 5
WinActivate
}
So your buddy could create a shortcut and click it every time he's loading the Media Center to change the sound setting. He can get as fancy as he wants and he can make the script do everything for him, like change the sound, display, resolution, etc. and launch Media Center all from one shortcut.
This is kind of what I do, except I also have an IR receiver hooked to my PC and I use Girder, which listens for IR events and translates them to key presses or launches programs.
So when I use my Logitech Harmony remote and press "watch Media Center", the remote turns on the TV, sets the input to HDMI2 (my PC), turns on the stereo, sets the sound input to coax, sends a wake signal to the PC (only matters if it's suspended), and tells Girder to launch my "start Media Center" script. My script changes the resolution to 1920x1080, changes the output from my monitor to my TV, and then launches Media Center. Then I navigate my Media Center using the remote. There's also an "off" script that does all this in reverse.
So with one button on the remote it does all this crap. It would be easy to make the script change sound settings in addition to the video settings. If your friend is serious about this stuff he should get a Harmony remote and an IR receiver, and install Girder. But if he just wants to automate the sound thing he can write a script for that.
Is there a program out there that will allow me to cache some security questions and have a button on the welcome screen, in case the user forgets their password?
Here is the situation, users do not have a local login account, they must logon initially while connected to the domain. Their credentials are then cached and they can logon when not connected to the domain.
When they forget their password and they are not in the office, they call the helpdesk and get the local admin credentials and login, launch vpn, and then change their password.
I am trying to avoid giving them the local admin credentials. I've called and googled a few different softwares, but they all require domain connectivity.
If we can cache their domain credentials, why can't we cache a set of security questions? Have you guys seen any program like this or is it even possible?
Here is the situation, users do not have a local login account, they must logon initially while connected to the domain. Their credentials are then cached and they can logon when not connected to the domain.
When they forget their password and they are not in the office, they call the helpdesk and get the local admin credentials and login, launch vpn, and then change their password.
I am trying to avoid giving them the local admin credentials. I've called and googled a few different softwares, but they all require domain connectivity.
If we can cache their domain credentials, why can't we cache a set of security questions? Have you guys seen any program like this or is it even possible?
I also got the Family pack for my dad. I thought there would be 3 keys inside, but there's just one key, I guess MS will let you use it on 3 different machines before they slap you over the head.
yep, same deal with office 07 student edition, allows 3 activations on 3 separate machines.
I installed Win7 a week or two ago and all I can say is that it is superb. Boots up in 30 seconds, compared with a 2 minute boot from Vista
.
Everything runs so much smoother. Haven't had a problem so far. It's as if my computer was meant for it.
.Everything runs so much smoother. Haven't had a problem so far. It's as if my computer was meant for it.
Got the HD but am gonna hold off on the processor for now to see how everything runs. I don't do much on my PC, just wanted some more storage. I will probably store all my media on the one I have now and use the new 1TB as the primary drive.
I installed my new toy (a 256gb SSD) in my laptop and ghosted the OS over from my old 120gb 7000rpm drive.
Windows 7 went from booting in about a minute to under 15 seconds and coming back from hibernation in just about 5.
Windows 7 went from booting in about a minute to under 15 seconds and coming back from hibernation in just about 5.
Sweet. What SSD did you get? I haven't been able to find one that size for much less than $700.
toy thread
https://acurazine.com/forums/showpos...postcount=4929
and it was $700 (but my company paid)
Kingston SSDNow V+ SNV225-S2/256GB 2.5" 256GB SATA II MLC Internal Solid state disk (SSD)
https://acurazine.com/forums/showpos...postcount=4929
and it was $700 (but my company paid)
Kingston SSDNow V+ SNV225-S2/256GB 2.5" 256GB SATA II MLC Internal Solid state disk (SSD)
Over the last couple days I've installed Server 2008 R2 in a VM on my Hyper-V 2008 R2 Server. It's running alongside Windows Home Server and Ubuntu 9.10 which are also in VMs. I'm happy that my plan has finally worked out!
Do you have an MSDN subscription or do you actually buy these server licenses?
With flash 10.1 and AIR 2 they're adding multi-touch support so now you can make multi-touch programs using either MS SDK or Adobe.
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/va33sU-_Bzk&color1=0xb1b1b1&color2=0xcfcfcf&hl=en_US&feat ure=player_embedded&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/va33sU-_Bzk&color1=0xb1b1b1&color2=0xcfcfcf&hl=en_US&feat ure=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/va33sU-_Bzk&color1=0xb1b1b1&color2=0xcfcfcf&hl=en_US&feat ure=player_embedded&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/va33sU-_Bzk&color1=0xb1b1b1&color2=0xcfcfcf&hl=en_US&feat ure=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object>
So PDC 2009 started today. Which is the professional developers conference and is the same place that they unveiled Windows 7 last year. The first day is all about developers and tomorrow should be more consumer based.
Today was about Windows Azure their cloud based computing thing that will be available on the 1st of next year. It seems they're taking the right approach, it's pretty much going to be windows in the cloud in that it will be the platform that you run your apps on and it doesn't really matter whether it's Java, mysql, php, eclipse,.net whatever there's quite a few 3rd party languages that run on Azure.
I know most of you don't care about this now but in a couple years this will be pretty important and I think MS is making the right move to be the place to be to have your program hosted in the cloud.
Tomorrow should be more about IE 9, Silverlight 4 (which is going mobile) and Office 2010 with hopefully the beta will be released publicly.
FYI, the Office 2010 beta is already available right now on MSDN and Technet.
Today was about Windows Azure their cloud based computing thing that will be available on the 1st of next year. It seems they're taking the right approach, it's pretty much going to be windows in the cloud in that it will be the platform that you run your apps on and it doesn't really matter whether it's Java, mysql, php, eclipse,.net whatever there's quite a few 3rd party languages that run on Azure.
I know most of you don't care about this now but in a couple years this will be pretty important and I think MS is making the right move to be the place to be to have your program hosted in the cloud.
Tomorrow should be more about IE 9, Silverlight 4 (which is going mobile) and Office 2010 with hopefully the beta will be released publicly.
FYI, the Office 2010 beta is already available right now on MSDN and Technet.
Office 2010 Public Beta is available now
http://www.microsoft.com/office/2010/en/default.aspx
Make sure you download in IE it won't work in other browsers.
Speaking of browsers MS talked a little about IE9 today and some of the new things that they're focusing on. They've only been making builds for a few weeks but they've already got java performance on par with current browsers.

Also the browser will use hardware accelerated graphics and text which leads to really nice and smooth text and graphic effects. It also has full HTML 5 support. A pre-release build should hopefully available around CES time
http://www.microsoft.com/office/2010/en/default.aspx
Make sure you download in IE it won't work in other browsers.
Speaking of browsers MS talked a little about IE9 today and some of the new things that they're focusing on. They've only been making builds for a few weeks but they've already got java performance on par with current browsers.

Also the browser will use hardware accelerated graphics and text which leads to really nice and smooth text and graphic effects. It also has full HTML 5 support. A pre-release build should hopefully available around CES time
Office 2010 Public Beta is available now
http://www.microsoft.com/office/2010/en/default.aspx
Make sure you download in IE it won't work in other browsers.
Speaking of browsers MS talked a little about IE9 today and some of the new things that they're focusing on. They've only been making builds for a few weeks but they've already got java performance on par with current browsers.
Also the browser will use hardware accelerated graphics and text which leads to really nice and smooth text and graphic effects. It also has full HTML 5 support. A pre-release build should hopefully available around CES time
http://www.microsoft.com/office/2010/en/default.aspx
Make sure you download in IE it won't work in other browsers.
Speaking of browsers MS talked a little about IE9 today and some of the new things that they're focusing on. They've only been making builds for a few weeks but they've already got java performance on par with current browsers.
Also the browser will use hardware accelerated graphics and text which leads to really nice and smooth text and graphic effects. It also has full HTML 5 support. A pre-release build should hopefully available around CES time
The DirectX D2D hardware accelerated text and graphics was nice and whats great is that web developers dont have to do anything to their pages to enable it, it all handled ny the browser.
this feature will be w7/ Vista only
this feature will be w7/ Vista only











I know a guy with MSDNAA and he hooked it up! Then hyper-v server is free and I paid for WHS a couple years ago
