|
||||||
http://blogs.zdnet.com/microsoft/?p=1645 So what is ballmer saying actually? Windows7 will be a lot better than Vista. vista the CRAPPIEST version of windows since windows ME! lol Sure there is a huge |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 | ||
|
Guest
Posts: n/a
|
http://blogs.zdnet.com/microsoft/?p=1645
So what is ballmer saying actually? Windows7 will be a lot better than Vista. vista the CRAPPIEST version of windows since windows ME! lol Sure there is a huge room for improvement! Vista is so horrible that it needed incredible TALENT to make so many mistakes at the same time! |
||
|
|
|
#2 | ||
|
Guest
Posts: n/a
|
"Ubuntista Vistuntu" <granter@yan.sina> wrote in message news:48f77e8c$1@newsgate.x-privat.org... > http://blogs.zdnet.com/microsoft/?p=1645 > > So what is ballmer saying actually? Windows7 will be a lot better than > Vista. > > vista the CRAPPIEST version of windows since windows ME! lol > > Sure there is a huge room for improvement! Vista is so horrible that it > needed incredible TALENT to make so many mistakes at the same time! > > > > Sounds like Vista is way over your head. I suggest going to the bookstore and getting a "Vista for Retards" book. Come back in 8 weeks when you are done. |
||
|
|
|
#3 | ||
|
Guest
Posts: n/a
|
Ubuntista Vistuntu wrote:
> http://blogs.zdnet.com/microsoft/?p=1645 > > So what is ballmer saying actually? Windows7 will be a lot better than > Vista. > > vista the CRAPPIEST version of windows since windows ME! lol > > Sure there is a huge room for improvement! Vista is so horrible that it > needed incredible TALENT to make so many mistakes at the same time! > > > > I don't have any problems with Vista. And some of the concepts that have been incorporated into Vista should and will be brought Windows 7, and that includes UAC too. I just don't see too many Vista users posting about malware issues in the Vista NG(s), not like you see them posting about malware issues with XP and other NT based or non-NT based Windows O/S(s). <http://www.securitypronews.com/news/securitynews/spn-45-20060601ASLRJoinsVistasBagOfTricks.html> <http://technet.microsoft.com/en-us/magazine/cc162458.aspx> Address Space Load Randomization Despite measures like Data Execution Prevention and enhanced compiler error checking, malware authors continue to find buffer overflow vulnerabilities that allow them to infect network-facing processes like Internet Explorer®, Windows services, and third-party applications to gain a foothold on a system. Once they have managed to infect a process, however, they must use Windows APIs to accomplish their ultimate goal of reading user data or establishing a permanent presence by modifying user or system configuration settings. Connecting an application with API entry points exported by DLLs is something usually handled by the operating system loader, but these types of malware infection don't get the benefit of the loader's services. This hasn't posed a problem for malware on previous versions of Windows because for any given Windows release, system executable images and DLLs always load at the same location, allowing malware to assume that APIs reside at fixed addresses. The Windows Vista Address Space Load Randomization (ASLR) feature makes it impossible for malware to know where APIs are located by loading system DLLs and executables at a different location every time the system boots. Early in the boot process, the Memory Manager picks a random DLL image-load bias from one of 256 64KB-aligned addresses in the 16MB region at the top of the user-mode address space. As DLLs that have the new dynamic-relocation flag in their image header load into a process, the Memory Manager packs them into memory starting at the image-load bias address and working its way down. Executables that have the flag set get a similar treatment, loading at a random 64KB-aligned point within 16MB of the base load address stored in their image header. Further, if a given DLL or executable loads again after being unloaded by all the processes using it, the Memory Manager reselects a random location at which to load it. Figure 7 shows an example address-space layout for a 32-bit Windows Vista system, including the areas from which ASLR picks the image-load bias and executable load address. <http://technet.microsoft.com/en-us/library/cc709691.aspx> To help prevent malicious software from silently installing and causing computer-wide infection, Microsoft developed the UAC feature. Unlike previous versions of Windows, when an administrator logs on to a computer running Windows Vista, the user’s full administrator access token is split into two access tokens: a full administrator access token and a standard user access token. During the logon process, authorization and access control components that identify an administrator are removed, resulting in a standard user access token. The standard user access token is then used to start the desktop, the Explorer.exe process. Because all applications inherit their access control data from the initial launch of the desktop, they all run as a standard user as well. After an administrator logs on, the full administrator access token is not invoked until the user attempts to perform an administrative task <http://news.softpedia.com/news/Admin-Approval-Mode-in-Windows-Vista-45312.shtml> The admin approval mode in Windows Vista illustrates how the security features of the operating system have evolved beyond Windows XP. The administrator approval mode is active by default for all the users that are members of the local administrator group. With the introduction of the User Account Control in Windows Vista, Microsoft has labored to deliver a balance between security via privilege limitations and functionality. In Windows XP, a standard user found that the actions they were able to perform were confined to the point of lost functionality. This is also one of the reasons why in Windows XP, standard user accounts are less than popular. In this aspect, the security delivered by limiting the administrator privileges was traded off for complete functionality. In Windows Vista, Microsoft has integrated a common denominator in the UAC settings: the admin approval mode. "In this mode (which is on by default for all members of the local administrators group), every user with administrator privileges runs normally as a standard user; but when an application or the system needs to do something that requires administrator permissions, the user is prompted to approve the task explicitly. Unlike the "super user on" function from UNIX that leaves the process elevated until the user explicitly turns it off, admin approval mode enables administrator privileges for just the task that was approved, automatically returning the user to standard user when the task is completed," explained Jim Allchin, Microsoft Co-President, Platform and Services Division. Allchin went on to explain that the functionality is simply a convenience feature designed for administrators. The admin approval mode does not create a security boundary between processes. In this context, in the absence of process isolation, interference is possible. "If an administrator performs multiple tasks on the same desktop, then malware may potentially be able to inject or interfere with an elevated process from a non-elevated process. Thus, the most secure configuration for Windows Vista is to run processes in two separate accounts, with only administrator tasks performed using an administrator account and all other tasks performed under the standard user account," added Allchin. <http://technet.microsoft.com/en-us/magazine/cc138019.aspx> <http://technet.microsoft.com/en-us/magazine/cc160882.aspx> <http://msdn.microsoft.com/en-us/library/aa382503.aspx> <http://juice.altiris.com/article/2665/folder-virtualization-concepts-windows-vista> To accommodate existing software for Windows that writes to protected file directories, Microsoft provides a backward compatibility technology known as Virtualization. While virtualization enables older applications to run without programmer intervention, it does not guarantee correct behaviour, and many applications will need to be updated to comply with UAC restrictions. Virtualization is often referred to as data redirection because it functions by funnelling attempted access to protected locations to new locations stored under user profiles. For example, if a legacy application attempts to write to the Program Files directory, UAC silently redirects that operation to an unprotected user-specific folder. Virtualization Process When an application installer attempts to write a file called Entry.txt in C:\Program Files, it is silently redirected to a Virtual Store directory located inside the current user's account. To the application, things proceed as normal, and it has no idea that it is being redirected. To the user, the application, too, still appears to be located at the old, expected location. But because the application is not access system-wide file locations, it cannot be used to harm the system. And on multi-user systems, each user will have isolated, local copies of redirected files. When this action is being invoked by a admin user, the file entry is done in Program Files itself. This is depicted in the figures below. <http://msdn.microsoft.com/en-us/library/aa382503.aspx> Applications should not attempt to modify WRP-protected resources because these are used by Windows and other applications. If an application attempts to modify a WRP-protected resource, it can have the following results. Application installers that attempt to replace, modify, or delete critical Windows files or registry keys may fail to install the application and will receive an error message stating that access to the resource was denied. Applications that attempt to add or remove sub-keys or change the values of protected registry keys may fail and will receive an error message stating that access to the resource was denied. Applications that rely on writing any information into protected registry keys, folders, or files may fail. <http://msdn.microsoft.com/en-us/library/aa382530(VS.85).aspx> Permission for full access to modify WRP-protected resources is restricted to TrustedInstaller. WRP-protected resources can be changed only using the Supported Resource Replacement Mechanisms with the Windows Modules Installer service. WRP protects files with the following extensions that are installed by Windows Server 2008 or Windows Vista: .dll, .exe, .ocx, and .sys. WRP protects critical files that are installed by Windows Server 2008 or Windows Vista with the following extensions: .acm, .ade, .adp, .app, ..asa, .asp, .aspx, .ax, .bas, .bat, .bin, .cer, .chm, .clb, .cmd, .cnt, ..cnv, .com, .cpl, .cpx, .crt, .csh, .dll, .drv, .dtd, .exe, .fxp, .grp, ..h1s, .hlp, .hta, .ime, .inf, .ins, .isp, .its, .js, .jse, .ksh, .lnk, ..mad, .maf, .mag, .mam, .man, .maq, .mar, .mas, .mat, .mau, .mav, .maw, ..mda, .mdb, .mde, .mdt, .mdw, .mdz, .msc, .msi, .msp, .mst, .mui, .nls, ..ocx, .ops, .pal, .pcd, .pif, .prf, .prg, .pst, .reg, .scf, .scr, .sct, ..shb, .shs, .sys, .tlb, .tsp, .url, .vb, .vbe, .vbs, .vsmacros, .vss, ..vst, .vsw, .ws, .wsc, .wsf, .wsh, .xsd, and .xsl. WRP protects critical folders. A folder containing only WRP-protected files may be locked so that only the Windows trusted installer is able to create files or subfolders in the folder. A folder may be partially locked to enable Administrators to create files and subfolders in the folder. <http://blogs.msdn.com/e7/archive/2008/10/08/user-account-control.aspx> User Account Control (UAC) is, arguably, one of the most controversial features in Windows Vista. Why did Microsoft add all those popups to Windows? Does it actually improve security? Doesn’t everyone just click “continue”? Has anyone in Redmond heard the feedback on users and reviewers? Has anyone seen a tv commercial about this feature? In the course of working on Windows 7 we have taken a hard look at UAC – examining customer feedback, volumes of data, the software ecosystem, and Windows itself. Let’s start by looking at why UAC came to be and our approach in Vista. |
||
|
|
|
#4 | ||
|
Guest
Posts: n/a
|
Ubuntista Vistuntu wrote:
> http://blogs.zdnet.com/microsoft/?p=1645 > > So what is ballmer saying actually? Windows7 will be a lot better than > Vista. > > vista the CRAPPIEST version of windows since windows ME! lol > > Sure there is a huge room for improvement! Vista is so horrible that it > needed incredible TALENT to make so many mistakes at the same time! hehehe..still got that Vista hate campaign going on huh? Guess what loser, Vista is and you're not!...LOL! |
||
|
|
|
#5 | ||
|
Guest
Posts: n/a
|
Frank cant you get it through your tiny whinny small brain?
I am clearly not an MS hater. I like XP and am longing for windows7 to be far better than vista. This logic dictates that something IS VERY WRONG with VISTA in order for me to (not "hate" it but) ridicule and criticize it so much. Perhaps its some stuff you are too dumb to comprehend???? I have sure told them to you! Yet you are too stupid to understand... it is my fault? "Frank" <fab@notspam.cmm> wrote in message news:eSXEjI8LJHA.276@TK2MSFTNGP02.phx.gbl... > Ubuntista Vistuntu wrote: >> http://blogs.zdnet.com/microsoft/?p=1645 >> >> So what is ballmer saying actually? Windows7 will be a lot better than >> Vista. >> >> vista the CRAPPIEST version of windows since windows ME! lol >> >> Sure there is a huge room for improvement! Vista is so horrible that it >> needed incredible TALENT to make so many mistakes at the same time! > > hehehe..still got that Vista hate campaign going on huh? > Guess what loser, Vista is and you're not!...LOL! > |
||
|
|
|
#6 | ||
|
Guest
Posts: n/a
|
On Thu, 16 Oct 2008 22:53:03 +0300, "Ubuntista Vistuntu"
<granter@yan.sina> wrote: >Frank cant you get it through your tiny whinny small brain? > >I am clearly not an MS hater. > >I like XP and am longing for windows7 to be far better than vista. > >This logic dictates that something IS VERY WRONG with VISTA in order for me >to (not "hate" it but) ridicule and criticize it so much. > >Perhaps its some stuff you are too dumb to comprehend???? Frank is such a idiot he can't comprehend up and down, left and right or right from wrong. He's just your typical right wing idiot. |
||
|
|
|
#7 | ||
|
Guest
Posts: n/a
|
On Thu, 16 Oct 2008 13:51:00 -0700, Frank <fab@npam.cmm> wrote:
>Ubuntista Vistuntu wrote: > >> Frank cant you get it through your tiny whinny small brain? >> >> I am clearly not an MS hater. > >Keep lying...maybe you'll end up believing your own lies! >Oh wait! You already do! You are a classic pathological liar! According to the idiot Frank anyone speaking truthfully about Microsoft hates them. Frank go nuts every time the truth is posted. |
||
|
|
|
#8 | ||
|
Guest
Posts: n/a
|
On Thu, 16 Oct 2008 14:10:17 -0700, Frank <fab@npam.cmm> wrote:
>Ubuntista Vistuntu wrote: > >>> Keep lying...maybe you'll end up believing your own lies! >>> Oh wait! You already do! You are a classic pathological liar! >> >> >> Reflecting again Frank? > >You do have trouble with the truth don't capin' crunch? The truth is you're a jackass and everyone knows it. |
||
|
|
|
#9 | ||
|
Guest
Posts: n/a
|
"Ringmaster" <bigtop@VistaGeneralCircus.net> wrote in message news:1pcff496h272eiepeubjtvnnsotiscq32b@4ax.com... > On Thu, 16 Oct 2008 14:10:17 -0700, Frank <fab@npam.cmm> wrote: > >>Ubuntista Vistuntu wrote: >> >>>> Keep lying...maybe you'll end up believing your own lies! >>>> Oh wait! You already do! You are a classic pathological liar! >>> >>> >>> Reflecting again Frank? >> >>You do have trouble with the truth don't capin' crunch? > > The truth is you're a jackass and everyone knows it. The truth is you're a Rush Limbaugh lover and a Dr. Laura lover and EVERYONE knows it. ROTFLMAO! Just FYI. |
||
|
|
|
#10 | ||
|
Guest
Posts: n/a
|
"Ringmaster" <bigtop@VistaGeneralCircus.net> wrote in message news:fmcff416i85j7q35n3nm27jkn14dk5mobe@4ax.com... > On Thu, 16 Oct 2008 13:51:00 -0700, Frank <fab@npam.cmm> wrote: > >>Ubuntista Vistuntu wrote: >> >>> Frank cant you get it through your tiny whinny small brain? >>> >>> I am clearly not an MS hater. >> >>Keep lying...maybe you'll end up believing your own lies! >>Oh wait! You already do! You are a classic pathological liar! > > According to the idiot Frank anyone speaking truthfully about > Microsoft hates them. Frank go nuts every time the truth is posted. There you go telling everyone what Frank thinks. You have no clue as usual. Damn, you can't even get your copy of Vista to operate correctly |
||
|
![]() |
| Tags |
| ‘windows, ballmer, better’, lot, vista |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Ballmer: Windows 7 will be Vista, but a lot better - ZDNet Blogs | NewsBot | Microsoft News | 0 | 10-16-2008 01:01 PM |
| Ballmer: Vista not a failure but heresa Windows 7 demo - iTWire | NewsBot | Microsoft News | 0 | 05-30-2008 03:12 AM |
| Ballmer and Gates defend Vista, drop Windows 7 hints - Register | NewsBot | Microsoft News | 0 | 05-28-2008 04:43 PM |
| Ballmer and Gates defend Vista, drop Windows 7 hints - Register | NewsBot | Microsoft News | 0 | 05-28-2008 10:33 AM |
| Ballmer: 'Vista is a work in progress' | NewsBot | Microsoft News | 0 | 04-19-2008 05:37 AM |