Sunday, March 27, 2022

Go to any spot in recording with a mouse click! Love it!

Go to any spot in recording with a mouse click! Love it!

Hi all:

   Everyone else probably knew it already,  but I just discovered that when you hover the mouse over the Media Center window during playback that by simply clicking on any spot in the "time line" the recording instantly jumps to that position in the recording! No rewinding, no fast-forwarding......just pick your spot and click to go there.  A really nice addition to Media Center!  Now,  someone please post that they didn't know that so I don't feel so, um,  uninformed.


Reply:
Uh, hasn't that always been the case?

------------------------------------
Reply:
Hi RobertBaker:

    I'm on a Vista PC right now watching a recording and the "time line bar" I mentioned doesn't even show up until you pause or hit one of the little arrows at the bottom to rewind, fast forward etc.  And no, you couldn't click your mouse pointer on the bar showing your position in the recording and go to anywhere on the recording before Win7.  Did you actually try the feature?   I'm sure you would know it didn't exist in XP MCE2005 or Vista.  I'm not talking about the little arrows at the bottom right of the Media Center screen......it's the black line that pops up when you move your mouse over the current recording as it plays.......click it anywhere from one end to the other and it immediately goes to that spot nearly instantaneously!


------------------------------------
Reply:
MPC has done this since XP, but that's for WMP haters like me.

------------------------------------
Reply:
WMP = Windows Media Player........MPC = ????????????

------------------------------------
Reply:
MPC=Media Player Classic
http://www.cccp-project.net/

------------------------------------
Reply:
Hi Flamesbladeflcl:
     Thanks for clueing me in about what MPC is.  I guess I should have "googled" it instead of asking a dumb question!  I checked out the link you provided to learn about it.  I put the link in my favorites for possible later implementation on my XP pc.

------------------------------------
Reply:
It is a very nice media player with a robust set of codecs. I recomend it.

------------------------------------

Taskbar preview won't come up in front

I just sent a feedback ticket, but I rather ask here if anyone experienced this: I have the windows firewal window open and when I hover the mouse over the taskbar, the preview of each window comes up but behind the control panel window :S
It's the first window that makes the preview come up behind it, if I found another one, I'll post it here.

Reply:
I had this problem one or twice on my first install of Windows 7 Beta; but then again I had quite a few problems on my first install. Upon installing the OS for the second time, everything has been working normally.

------------------------------------

Blue Screen on inst. Windows7 32 (64)Bit for NVIDIA Business Platform 2006.

 MB - Foxconn 6150BK8MC-KRSH

Can't LOGIN after connect with Remote Dektop (just via RD!?)

Hi... I face a problem very weird today..

I am trying to work remotely with my Windows Vista, so I enabled Remote Desktop, so just to try if all is working fine I connect from my laptop (Vista) to the computer that has Windows 7, I was able to login without problems I do few things remotely and then I disconnect.

Then I try to log-in in my computer with Windows 7, and when I press the CTRL+ALT+DEL, select the session that is connected (that means the one that says Logged on) and type the right password, a black screen appears for very minor seconds, and then again the startup page (where is needed to press CTRL+ALT+DEL), so I come back to the machine that I connected previously with Remote Desktop and I am able to be in!, so why I can't login now in the Windows 7 machine (physically I mean?)... any toughts?, yeah maybe with a restart it will be fixed, but I am very worried since that is a common procedure in my case...

Thanks!

Miklos
Miklos Cari

Reply:
Hi

I think this is normal

Remote desktop is for administrators, so you cannot login while admin is loged remotely, because you will see what admin is doing.

------------------------------------
Reply:
No, this is not normal... since the remote session already finished, so I should be able to login, in fact when I had a Vista machine I was doing the same thing, but right now I have that problem with the Windows 7.

Other behaviors after that... machine get very slowly! (note: that I am only logged with a Remote Desktop session since I can't log interactively). "workaround" restart the machine, all works without a problem, I will try to reproduce the problem and get back with more info If I can..

Thanks!

Miklos
Miklos Cari

------------------------------------
Reply:

 It looks like remote sesion is not terminated properly by some reason.

I think some proces of remote session stay running because it cannot be terminated and using task manager and resource monitor you can find and kill it

Check events log to find what is causing your problem.


------------------------------------

Chat group (c++ / Dark GDK)

Hello everyone.
I created this group chat to talk and get help about c++ and game programming (Dark GDK or any other framework/lib/engine)

to use it just ADD in you Windows Live Messenger
group25992@groupsim.com

Send a nudge to see who is online

Trying to cheat the Single Hemisphere limitation

Hi folks,

    I'm trying to cheat the single hemisphere problem (for a bounding box) by finding which latitude is further away from the equator and using the hemisphere. Not the best solution, but at least I can get some results. Possibly a better solution might be to split the bounding box into two boxes, one for each hemisphere.

Anyways, this is what i'm trying to do and it's not working. I swear i understood this spatial stuff, until a simple problem like this stumps me.

this is my code :-

1DECLARE @BoundingBox GEOGRAPHY 
2 
3DECLARE @TLLong DECIMAL(18, 10), 
4    @TLLat DECIMAL(18, 10), 
5    @BRLong DECIMAL(18, 10), 
6    @BRLat DECIMAL(18, 10) 
7    
8    -- Hardocode some values for the purpose of this test. 
9    SET @TLLong = -98.4375 
10    SET @TLLat = 82.11838360691267 
11    SET @BRLong = 98.4375 
12    SET @BRLat = 0 
13    
14SET @BoundingBox = GEOGRAPHY::STGeomFromText('POLYGON((' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + ',
15        ' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @BRLat) + ',
16        ' + CONVERT(VARCHAR(18), @BRLong) + ' ' + CONVERT(VARCHAR(18), @BRLat) + ', 
17        ' + CONVERT(VARCHAR(18), @BRLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + ',
18        ' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + '))', 4326) 



So what i've tried to do is create a bounding box that is, more or less, a massive part of the northern hemisphere. To generate this polygon, i've started at the top left and gone anti-clockwise around to make the box, ending back at the top again.

Polygon doesn't generate -> it's the standard sql error...

Microsoft.SqlServer.Types.GLArgumentException: 24205: The specified input does not represent a valid geography instance because it exceeds a single hemisphere. Each geography instance must fit inside a single hemisphere. A common reason for this error is that a polygon has the wrong ring orientation.

Could anyone shed some light on what i've done horribly wrong? I'm taking a guess it might have something to do with the curvature of the earth and the projected box i'm trying to construct?

cheers.


-Pure Krome-

Reply:
Pure Krome said:

I'm taking a guess it might have something to do with the curvature of the earth and the projected box i'm trying to construct?


Sounds like a pretty good guess to me!
To help explain the "Within a hemisphere" limitation, you might want to check out the EnvelopeAngle() method. Basically, the result of EnvelopeAngle() gives you the angle (in degrees) between the center of a geography instance and the furthest most outlying point of that instance. So it's one way of defining the geographic 'spread' of an instance.

EnvelopeAngle() can come in useful in your case because, in order to fit within a single hemisphere, the result of the EnvelopeAngle() method must therefore be less than 90 degrees. (Otherwise, at least one point of the instance cannot be contained in the same hemisphere).

With this in mind, keeping the same latitude bounds as you are using currently, you can work out the left and right longitudes of the maximum possible extent of your bounding box as follows:
DECLARE @BoundingBox geography    
     
DECLARE @TLLong DECIMAL(18, 10),    
@TLLat DECIMAL(18, 10),    
@BRLong DECIMAL(18, 10),    
@BRLat DECIMAL(18, 10)    
        
-- Hardocode some values for the purpose of this test.    
SET @TLLong = -89.962186901  
SET @TLLat = 82.11838360691267    
SET @BRLong = 89.962186901  
SET @BRLat = 0    
        
SET @BoundingBox = geography::STGeomFromText('POLYGON((' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + ', 
  ' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @BRLat) + ', 
  ' + CONVERT(VARCHAR(18), @BRLong) + ' ' + CONVERT(VARCHAR(18), @BRLat) + ',  
  ' + CONVERT(VARCHAR(18), @BRLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + ', 
  ' + CONVERT(VARCHAR(18), @TLLong) + ' ' + CONVERT(VARCHAR(18), @TLLat) + '))', 4326)    
 
SELECT @BoundingBox,  
@BoundingBox.EnvelopeAngle() 

The result of EnvelopeAngle() in this case is 89.9999713521094.
Attempting to expand the bounding box further will take this result over 90, leading to the geography instance being invalid, so this is your largest bounding box (with these latitudes).

------------------------------------
Reply:
Are you creating your bounding box in order to define an area in which to search for POIs?

If so, rather than creating a large rectangular polygon and trying to do SELECT * WHERE location.STIntersects(Polygon), have you considered taking an alternative approach, something like:
SELECT *   
WHERE   
POI.Lat BETWEEN TLLat AND BRLat  
AND POI.Long BETWEEN BLLong AND TRLong 

That way, you never need to worry about creating the polygon in the first place...

------------------------------------
Reply:
yes i am. all my spatial calculations are point vs poly or point vs points or (my hardest problems) pointS (multiple) vs polys.

as such, i was always trying do to STIntersects(..). I will definitely give your BETWEEN code a go in a few mins :)

One question...

Quote: Tanoshimi :: With this in mind, keeping the same latitude bounds as you are using currently, you can work out the left and right longitudes of the maximum possible extent of your bounding box as follows  (bolded added by myself)

Why longitude? i thought the hemisphere problem was latitude and we can't have a bounding box that goes over the equator .. meaning .. i don't care about the longitude (or vertical) sides of the box?

Now, you're suggesting I use this EnvelopeAngle() method (i must admit, i've never heard of that .. oops!) which gives the angle (in degress) between the centre and the furthest point. Ok.. so if i have a simply polygon rectangle (eg. the viewport of a VirtualEarth/GoogleMap map), then this method. Er.. I think i need to see a picture of this.. Time to use google... umm..yeah. gotcha :: http://blogs.msdn.com/davidlean/archive/2008/10/27/sql-2008-spatial-samples-part-n-3-of-n-performance-improvement-methods.aspx (hint: also one of my top spatial blogs i keep tabs on .. and a fellow Aussie I think!).

ok, Dave has a good quote about the STEnvelopeAngle() ..

Dave :: You can think of EnvelopeAngle as a distance. Your distance is measuring "Degrees of Longitude" or "Degrees of Latitude" so it is an Angle & not a linear measurement. It is the Radius of the bounding circle.

OK -interesting. the Radius. Ok .. but how does having the radius help us? In your example above, you said:

Tanoshimi: The result of EnvelopeAngle() in this case is 89.9999713521094.
Attempting to expand the bounding box further will take this result over 90, leading to the geography instance being invalid, so this is your largest bounding box (with these latitudes).


Now, the reason why it did that, was because the longest distance was the two sides, not the top and bottom. The shape provided was a rectangle, with the East<->West being longer than the North<->South (think widescreen, cause the viewport was generated on a widescreen monitor).

But what i don't get is how this can help? you see, i don't want to modify the horizontal length of the bounding box, just the height (so it doesn't go over the equator). I can't see how the EnvelopeAngle() can help with that.


-Pure Krome-

------------------------------------
Reply:
Pure Krome said:

i thought the hemisphere problem was latitude and we can't have a bounding box that goes over the equator .. meaning .. i don't care about the longitude (or vertical) sides of the box?


Nope - the hemisphere problem is that you can't have a geography instance that spans more than one-half of the earth's surface.
It's got nothing to with the equator (nor the international dateline) and it doesn't mean that you can't have a polygon that spans the traditional division of 'northern'/'southern' hemisphere - in this case a 'hemisphere' means any half of the earth's surface.

So, for instance, this is ok:

geography::STPolyFromText('POLYGON((0 85, 0 -85, 179 -85, 179 85, 0 85))', 4326)



and so is this:

geography::STPolyFromText('POLYGON((60 -45, -135 -45, -135 45, 60 45, 60 -45))', 4326)



So long as the points of the instance can be contained in one half of the earth's surface, you're ok.

As you say, envelopecenter() gives a bounding circle (because it operates on the curved surface of the geography datatype). So think of the earth as a football, or something like that, and put a rubber band on the surface of the football representing the outer ring of a polygon.
Now, make the polygon larger by pulling the rubber band down over the football. The largest polygon you can make is when it covers one half of the earth's surface - i.e. when the rubber band goes around the middle of the football. At this point, the angle between the point in the middle of the rubber band, and the band itself is 90 degrees.

Make sense?


------------------------------------
Reply:
Hi Folks,

First, I just put up a post on my blog that discusses exactly what and how the hemisphere limitation works.  There's nothing wrong with what Tanoshimi says, but there's a little more to the story.  It may be of interest to people on this thread.

Second, let me say a few words about bounding boxes on the earth: they stink.

Let me expand on this a bit---although it's probably worth another blog entry.

One problem is that when people say they want a bounding box, they generally want a lower and upper bound on the latitude and longitude.  This is generally a reasonable request, but we cannot represent this cleanly as a polygon.  The two north-south edges (representing the minimum and maximum longitudes) are easy.  The east-west edges (representing the minimum and maximum latitudes) are not: they aren't great circles, but small circles or loxodromes

Until we add small circle support to SQL there is no way to simply represent this polygon.

A second problem—that the concept of a bounding box is really a planar concept—becomes evident when we cross over the line where longitude = 180 or -180, or at the poles.  What should the bounding box for LINESTRING(-140 30, 140 40) be?  Worse, what about LINESTRING(-90 80, 90 80)?

Finally, let me try to be a little positive.  :)  If you want to query a box that ranges from MinLat to MaxLat, and from MinLong to MaxLong, you can create a polygon that will at least closely match the desired box.  As we've discussed, the edges of the box that run from (MinLong MaxLat) to (MinLong MinLat) and from (MaxLong MinLat) to (MaxLong MaxLat) are easy—they're great circles.

The other two edges will have to be approximated by densifying them.  I.e., instead of going directly, place a number of points along the way, each at the same latitude.  You'll get a great circle between these points, but if you get the points reasonably close together you should not deviate very much.  You should be able to build this fairly easily using the sink/builder API.

The polygon you generate won't be simple—it will have many points—but it should give you the query region you're looking for.

Cheers,
-Isaac

Isaac Kunen, Microsoft SQL Server

------------------------------------

Download manager broken

10% into my download, the DLM stopped. When I try to restart it, it says "Could not resume, the file has changed on the server (mismatche file size). Try to download a fresh copy of the URL. Would you like to start over?"  When I click the yes button it sets the Status to Error on the DLM.

 

Can anyone advise?

 

Many thanks,

Nick.


Reply:
I've experienced similar problems with DLM; never did get a successful resume to work.  It took me 5-6 tries to get WIN7b downloaded.
ASUS P5Q PRO Intel Q6600 Core2 Quad CPU 4GB Corsair RAM Dual Nvidia 8800GTS Video Win Vista/Win7b 64bit Dual Boot

------------------------------------
Reply:
I had heaps of problems due to server load.  It was going to take several days so I ended up finding a torrent.  This worked great.  Had the iso in a few hours.  Maybe Microsoft should look at using torrents instead of download managers

------------------------------------
Reply:
 which torrent you use?
please tell me and how i really having that pro

------------------------------------

Setup is copying temporary files...

I downloaded the Windows 7 beta on my desktop.  I burned it to a disk through the network and I had no problems.  I tried to install Windows 7 onto my desktop (the DVD drive can only read burned media) and it gets stuck at "Setup is copying temporary files...".  I' tried installing in safe mode, I've tried installing from booting form the DVD, and nothing works.  My system is a Dell Dimension 4700, custom built with 3GB RAM, ATI graphics card with 1GB of DDR3 memory, 2.80 GHz Intel processor, and all other hardware is as-shipped.  One thing:  It gets stuck at "Setup is copying temporary files..."  for more than 5 hours.

Reply:
What program did you use to burn the disk?

Other than doing another burn or download, and no one has a better suggestion, try this:

Put the hard drive into another system as the only hard drive.
Boot from the DVD and let it start installing the files, up to the first reboot.
At that point, leave the system off and remove the hard drive and replace back into the Dell.
Boot to the hard drive and let it finish the install.

------------------------------------
Reply:
When I try booting it from just the DVD, it goes to the main Windows 7 bootup screen, turns on, and has a plain blue background with the testing notice in the bottom right.  Nothing else happens.

------------------------------------

bootmgr is missing

Hi there!

I installed Window 7 Beta last week, by formatting my laptop. Before doing anything else I tried to install an anti-virus (Kasparsky lap). It was installed without any problems, but just before restarting, the computer went off. I tried restarting a number of times and all I could do is enter in safe mode and try to uninstall Kasparsky by System Restore. However it didn't work. Once Windows 7 were loaded again the system went off. This happened a number of times and I decided to quit for a while, since I had no more time and patience.
Today I tried booting from DVD and reformatting the disk. It seemed Ok until the machine had to reboot. It went off again, and after several restarts I got the message "bootmgr is missing press Ctrl+Alt+Del to go on". The same thing goes on again and again. The system does not seem to manage to load Windows.
Any suggestions?

P.S. It is an hp compaq, 60GB hard disk and if I am not mistaken 2GB RAM.

Reply:
Hi

Check system temperature and scan HDD and RAM for errors

Probably you have hardware problem that must be fixed before to install w7

------------------------------------

Have Questions for the Next Windows Virtual Roundtable?

The Springboard Team is conducting another quarterly Virtual Roundtable on Windows 7, hosted by Mark Russinovich, on February 12, 2009 at 11:00 am Pacific Time. Please send questions that you have to be discussed during the roundtable to vrtable@microsoft.com.


Windows Client IT Pro Audience Manager for Web Forums

Windows could not configure one or more system components

I'm trying to do a clean install of Windows 7 build 7000 32-bit (downloaded from microsoft.com) on a 30 GB partition. During the "Completing installation..." phase, I get a pop-up with this message:

Windows could not configure one or more system components. To install Windows, restart the computer and then restart the installation.

I tried again, doing the update at the beggining of the install (through Windows XP) and making sure it could connect to the internet during the installation (I could see the light blinking on my router during installation, so it was connecting online). I also tried disconnecting as many devices I could. I'm still getting the same error. Here are the logs in X:\Windows\Panther\:

X:\Windows\Panther\setupact.log
X:\Windows\Panther\setuperr.log
X:\Windows\Panther\cbs.log
X:\Windows\Panther\DDACLSys.log
X:\Windows\Panther\UnattendGC\setupact.log
X:\Windows\Panther\UnattendGC\setuperr.log

I also know it's not a problem with the ISO, I redownloaded it and mounted it with DAEMON Tools Lite in Windows XP (no need to burn the ISO using this method).


Reply:
there is already a thread on this. look further down the page you wil see the same question.. but no real replies yet..

------------------------------------
Reply:
It's not the same error message in the other thread.

------------------------------------
Reply:
This is the error I get during the install:

http://www.omni-gamer.com/win7a.png

If I restart, I get this pop-up:

http://www.omni-gamer.com/win7b.png



------------------------------------
Reply:

Hi, just a question. You mention "clean install" and several lines later "update". 
Which one is it? Your logs seem to point to an update problem.

My experience for what it's worth:
First install was w7 x86 on a virtual PC on XP. Everything went fine (iso mounted with deamon tools lite)

Second install was a w7 x64 clean install from a dvd rw (burnt the iso to a read write dvd to avoid XP/7 interacting problems (and can reuse my dvd for something else)). Not a single problem. The only things plugged to my computer were: screen, keyboard and mouse. Nothing exotic USB device plugged in, no funky soundcard or whatever.

No automatic updates during install, you can always turn that one on once you've installed it completely.

If this may help you...

Regards

Rem


------------------------------------
Reply:
When you lauch the installer in Windows XP, you have the option of updating Windows 7, but it was still a clean install. I tried both with and without the updates, same problem happens. I also tried installing through VirtualBox on Windows XP (this is how I made the screenshots), same problem again.

------------------------------------

Win 7 will not go wireless

Can you offer some suggestions

Last weekend I installed win 7 as part of a dual boot system. Connecting to the Internet by wire works fine, however connecting through the wireless is not working. Any suggestions? Going back to XP Pro wireless works great!

 

Here are my notebook and wireless card specs:

MSI GX620 sold as a  PowerPro 15:3 Notebook from powernotebooks.com

Intel Wireless WiFi Link 5300 802.11AGN - WiMax Ready
Built in Ethernet 10/100/1000BaseT Network ---Works good

According to the little wireless icon the connection is made however, the little icon bars are not green and it won't open up a web page (any) using the wireless connection. Using a hard wired connection I can access the internet.

This copy of windows 7 is dual booted on my hard drive along with XP pro.  When I switch to XP the wireless connection works like a champ!

I deleted the connection and then tried again. Still no wireless. I download a driver from Intel for the Intel Wireless WiFi Link 5300 802.11AGN card.  Still no luck,  I uninstalled the intel driver and restarted and let windows seven load one of its drives…..it loaded the same driver  
 

I disconnected the firewall stuff and still no luck.  

 I should also say that I'm using a netgear wireless cable modem (CG814wg)

 

Any recommendations

 

  • Changed type Mark L. Ferguson Sunday, February 15, 2009 2:11 AM no reply to suggestions

Reply:
 In my experience, my wireless security settings did not carry from the previous OS to Win7, so you may have to go through that process again. (SSID, WEP/WPA, etc...) in the Win7 configuration.

If you search for wireless networks, does it find anything at all ?


------------------------------------
Reply:
 

1. If you have a third-party firewall, e.g. ZoneAlarm, uninstall it.

2. Remove the existing connection:

Control Panel > All Control Panel Items > Network and Sharing Center > Manage Wireless Networks (in the left pane) and right-click the one you want to Remove.

3. Create a new connection:

Control Panel > All Control Panel Items > Network and Sharing Center > Set up a new connection or network > Manually Connect to a Wireless Network > Next. Type in the Network Name (SSID), select Security Type and type in the key. You may also want to tick 'Start this connection automatically' and 'Connect even if the network is not……' > Next.


------------------------------------
Reply:
When I search for wireless networks I find the whole neighborhood including mine.

------------------------------------
Reply:
 I did some more trouble shooting today at Lunch while visiting starbucks: At starbucks I Fired up win7 and accessed the wireless tmoble site without any problems. I surfed the starbucks site learned all about coffee and then went to the ATT comercial link and learned all about ATT. So.........

Would this mean that my problem is with my netgear routor only??? Its a netgear CG814wg. I went to the neatgear website but was unable to locate a vist driver or any other type driver for this cable modem.    Any suggestions?

------------------------------------
Reply:
Not necessarily. (Most wireless routers aren't much more than radio transceivers, with some configuration options. As such, you wouldn't need mfr-specific drivers for the router... just drivers for your specific card, to talk back and forth with the router. Since you connected at Starbucks using win7, that's a good indication that your drivers are sufficient.)

Starbucks has no security at all (by design) on their wifi, so that folks **can** come in, power up, and surf.

My guess is that your netgear has some level of security/handshaking.

Boot into XP, and then take a look at the properties of your home wifi connection.
Look for nomenclature (and related settings or values) such as:

SSID
WEP
WPA, WPA2
password

etc. 

Also, check to see if you have a static IP, or just DHCP assigned.

Copy down any values and/or settings, and enter these into the equivalent places in the Win7 OS wireless setup.

Your netgear may be set to not 'broadcast' it's SSID, so also look in XP for whether there is a checkmark next to parameters such as "Always connect to this network'. and any other such paramters, and, again, duplkicate these over on the Win7 side.

------------------------------------
Reply:
There were a bunch of us (in  a different forum)that had one problem with windows 7. That was while using a wireless router ( in our case it was the linksys WRT54G), everytime win7 was turned on it would knock of the routers wireless function. This was the case if you had Win 7 hardwired in. The wireless could be regain by a reboot of the router, but that was annoying as hell. The answer was to disable (or uncheck) ip v6 from network properties. This worked for my and many more network .

So my question then becomes...if ip v6 is wreaking havoc with my router, then how many other network devices are having trouble with it?

good luck

------------------------------------
Reply:
You may have your Win7 joined to a Homegroup. That requires IPv6, and turing it off may be what let you see the wireless.
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------
Reply:
 Go into your network setting and uncheck IPV6.

------------------------------------

Network transfer Limited Connectivity

I have upgraded Windows 7 Beta 64 bit from Vista Ultimate 64 bit.

I am using a quad core cpu Q6600 and an nForce 790i board with 4GB ram.

Now the issue that I have is my network. Everytime I transfer a decently big file on a network, it becomes interrupted by the "limited connectivity". The only fix that I can get is by restarting a computer.

I am also running ESET nod32 beta software.
  • Changed type Mark L. Ferguson Thursday, February 5, 2009 8:48 PM no reply to followup Q
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 6:05 PM no reply to suggestion

Reply:

Including a detailed screenshot report.

 

http://rapidshare.com/files/189052483/network_error.zip.html


------------------------------------
Reply:
I would look for a better driver for the network connection device.
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------

Context Menu Size

It seems that in Windows 7 that whenever the context menu has items with icons on the left side, it does not size correctly to handle them. Has anyone else seen this or know what the cause or fix might be?

 Screenshot

Reply:
Hmmm. Looks like it may be a video driver issue. The context menus I've seen all format properly with the left border of the menu being just a hair wider than the icons in the menu and the icon centered in the column.

What sort of video card do you have?

------------------------------------
Reply:
I have seen that before as well, but only occasionally. Most of my context menus display fine.

------------------------------------
Reply:
I have a NVIDIA 8600M on a Dell XPS M1530. Using the default drivers that Windows 7 32 bit installs.

------------------------------------

Network eror

Hello community and developers,

 

I got a problem with Windows 7 network: I have got a good connection with WLAN, can login into ICQ and Windows Live Messenger and load and chat with my contacts, but I can't open any website, with any browser (Firefox, Internet Explorer, Safari, Iron, Opera). It loads the favicon but can't display the webpage.

 

Hope you find an answere for my quesion or if it's a bug please fix it.

 

Thank you in advance for your answeres and help.

 

Sevi

  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:29 AM no reply to suggestion
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:29 AM no reply to suggestion

Reply:
Did it ever work? Have you tried clearing the browser cache, or system restore?
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------

Ethernet NIC that has a signed User Mode driver

I'm looking for a 100Mbps(Fast Ethernet) NIC that has a signed user-mode driver for Vista and perhaps also for Windows 7. So, I'm specifically looking NICs that have drivers that are not kernel-mode and that are signed.

Could someone please post some suggestions?

Thanks.
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:46 AM no reply to suggestion
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:46 AM no reply to suggestion

Reply:
Apparently no one here knows one. A google search should find anything that exists so far. Try an older driver, or wait for a better build of the beta. More drivers are appearing daily.
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------

graphics driver performance is poor on 64 bit

I was 1st using a 5750 pcie w/ a vista driver. I was getting literally 1/2 the performance benchmark on 3d mark 2001 in vista as I was on XP. Figured it was just poor support for the older pcie card. Got an Ati X1600xt yesterday. Got a score of 20,000 on Xp & 13,000 on W7 64 bit. Is it ALL cards are under performing compared to XP or will a newer 3d mark program run more equal?
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 2:36 AM no reply from OP

Reply:
 

I read on Tomshardware.com, that the Windows Advanced Rasterization Platform or WARP will in some cases put out a little effort to run a game without a GPU depending on the CPU.  On the list I see an ATI HD 3400 on-board video with exceptional performance (it got it running). 

 

I have a Phenom II 940 and an ATI HD 3300 on board video, 4 gigs of DDR2 1066, and the game would start but it would go about 1 frame every 4 seconds or so.  Did I setup something wrong? Or is it just bogus?

 

http://www.tomshardware.com/news/windows-cpu-gpu,6645.html

 

From what I read, I don't expect it to run perfectly, but atleast a little better from my last build that is a

2800 Athlon XP Barton

ATI Radeon 9800se 256meg AGP

3 gigs DDR pc3200

I built that computer 4 years ago and it can run the Crysis demo on medium settings with little lag.


As far as I know, Windows is not doing very well with this beta, and should wake up.

------------------------------------
Reply:
esto se debe a que windows seven no te instala los controladores oficiales, esto en buen castellaño es que solo te instala los drivers, pero con soporte 2d y no 3d, lo que no hace trabajar bien tu maquina

instalate los drives de windows vista de tu controlador y listo 

------------------------------------

Internet Explorer - makes from http://anyhost.com/ this http:///

Why ?
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 6:01 PM no reply to suggestion

Reply:
Have you cleared the IE cache?
IE, Tools menu, "Delete Browsing History"
What else have you tried to do to fix it?
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------

What's happened to my Control Panel/Windows Update/etc

I've done something

When I go to the Start button and try to access Control Panel  or  Devices and Printers or Windows Update or almost any of the standard features - nothing happens.

Any thoughts/ideas/solutions/etc

Dave
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:16 PM No reply to followup Qs
  • Changed type Mark L. Ferguson Wednesday, February 11, 2009 3:16 PM No reply to followup Qs

Reply:
What have you done to try to fix it? System restore? Restore from backup? SFC? Startup repair? InPlace Upgrade?
Rating posts helps other users
Mark L. Ferguson MS-MVP

------------------------------------

Software Distribution

I am trying to deploy office 2003 with SCCM and have had this work on a few clients

I am now trying to further deploy the package to further clients and it is now not working

i can see the package has been copied to the secondary site server distribution point but the client is not recieving the advertisment.

status messages tell me

Software Distribution 10035 The program for advertisement "F0020016 has not yet started because the content for the package "F0000013" - "Custom (quiet)" (version 1) has not been acquired.

it has been in this state for over a 24hr period.

any help appreciated thanks






Reply:
Hi,

Make sure that you added the DP of the secondary sites to your packages. On the clients check the execmgr.log, ClientLocation.log and LocationServices.log for more information.
Regards, Jannes Alink | Please mark posts as Answered if appropriate.

------------------------------------
Reply:

hi

as far as i can tell from status messages -  The package is on the DP is successfully processed and created

here is an extract from the execmgr log

            AdvertisementId = "F0020016";

            ClientID = "GUID:F7DB6B60-FBC6-49AD-8FC4-073F0442964D";

            DateTime = "20090205121543.589000+000";

            MachineName = "ML000582";

            PackageName = "F0000013";

            PackageVersion = "1";

            ProcessID = 844;

            ProgramName = "Custom (quiet)";

            SiteCode = "F00";

            ThreadID = 3324;

};

]LOG]!><time="12:15:43.599+000" date="02-05-2009" component="execmgr" context="" type="1" thread="3324" file="event.cpp:525">

<![LOG[Successfully raised SoftDistWaitingContentEvent event for program Custom (quiet)]LOG]!><time="12:15:43.609+000" date="02-05-2009" component="execmgr" context="" type="1" thread="3324" file="executionrequest.cpp:2623">

<![LOG[Execution Request for package F0000013 program Custom (quiet) state change from WaitingDependency to WaitingContent]LOG]!><time="12:15:43.609+000" date="02-05-2009" component="execmgr" context="" type="1" thread="3324" file="executionrequest.cpp:488">

<![LOG[The user has logged off.]LOG]!><time="13:46:41.181+000" date="02-05-2009" component="execmgr" context="" type="1" thread="3924" file="execreqmgr.cpp:4761">

<![LOG[Execution Request for package F0000013 program Custom (quiet) state change from WaitingContent to WaitingContent]LOG]!><time="13:50:42.900+000" date="02-05-2009" component="execmgr" context="" type="1" thread="2568" file="executionrequest.cpp:488">

the client location.log is looking to the secondary site management point - seems fine

extract from location services - 

 

            DateTime = "20090203153325.324000+000";

            HostName = "ft043.msfitout.com";

            HRESULT = "0x00000000";

            ProcessID = 3604;

            StatusCode = 0;

            ThreadID = 2840;

};

]LOG]!><time="15:33:25.324+000" date="02-03-2009" component="LocationServices" context="" type="1" thread="2840" file="event.cpp:525">

<![LOG[Client has bootstrapped trusted key information.]LOG]!><time="15:33:25.773+000" date="02-03-2009" component="LocationServices" context="" type="1" thread="2840" file="lssecurity.cpp:2267">

<![LOG[Persisting the management point authentication information in WMI]LOG]!><time="15:33:25.773+000" date="02-03-2009" component="LocationServices" context="" type="1" thread="2840" file="lssecurity.cpp:763">

<![LOG[Persisted Management Point Authentication Information locally]LOG]!><time="15:33:25.833+000" date="02-03-2009" component="LocationServices" context="" type="1" thread="2840" file="lssecurity.cpp:770">

<![LOG[Client has been reassigned, refreshing MP information]LOG]!><time="15:34:26.914+000" date="02-03-2009" component="LocationServices" context="" type="1" thread="2288" file="s

many thanks for the help.


------------------------------------
Reply:

struggling....

where does the content of the package cahce to ?

i am struggling as to where the process is failing

this package is proven to install on clients, but why it wont now ?


------------------------------------
Reply:
Hi,

I saw you used the "Custom (quiet)" option to run it. Can you test to see if it runs when you choose the manual option. Perhaps there is an issue with the commandline and the context it is running under.
Regards, Jannes Alink | Please mark posts as Answered if appropriate.

------------------------------------
Reply:
Jannes Alink said:

Perhaps there is an issue with the commandline and the context it is running under.


The command line isn't kicked-off at that point of time. The client is still looking for content ("WaitingContent"). See CAS.log for details. It might be a boundary issue, a matter of a protected DP, advertisement settings (slow/fast run behavior), etc.
The package is cached to %windir%\system32\ccm\cache by default, but that depends on the advertisement settings (and will only work after content was found on a DP).

------------------------------------
Reply:
ive noticed that i had not selected the option to download content from a distrubution point when on a slow network !!!  (i could have sworn i had ...anyway!)

i will re-run the advertisment and see how it goes.

many thanks for your updates so far  

------------------------------------
Reply:

hi ...

i have a status message that 2 of the clients are downloading content!!, out of the 10 machines that I am attempting to install the package on.

is there a way that i can force the advertisment, as only 2 of the 10 are downloading the content, and when i come to deploy on a larger scale time will become a factor ?




------------------------------------
Reply:
hi 

 it seems that a significant time has now passed (40 ish minutes since re-running the advert) and I am now struggling to see why not all of the client have recieved the advertisment ????

... i have initiated a machine retrieval policy and this has had no effect ?

any ideas ?

many thanks




------------------------------------
Reply:
 everything seems to have ground to a complete halt.  do uhave any suggestions as to where what I can be checking to see what where is failing?

------------------------------------

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...