Windows etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Windows etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

10 Haziran 2009 Çarşamba

Windows 7 SP1 Build (6.1.7227.0.winmain_sp.090602-2110)Out

Windows 7 builds have been leaking to the Internet since the pre-beta stage. This time around, we have yet another Windows 7 build 7127 with SP1 (no, it’s not a typo!).

Win7Logo

Like the recently leaked Windows 7 builds, there are no changes in the user interface (UI) of this build. The build string is 6.1.7227.0.winmain_sp.090602-2110 and was compiled barely a week ago.

As usual, we do not recommend downloading and installing leaked build as it might be infected with malicious code.

29 Nisan 2009 Çarşamba

Download Windows Server 2008 and Vista SP2 RTM (6002.18005)

Download Windows Server 2008 and Vista SP2 RTM (6002.18005)

Microsoft has finally compiled the final RTM version of Service Pack 2 (SP2) for Windows Vista and Windows Server 2008. As usual, the setup installer for Windows Vista and Windows Server 2008 SP2 have been leaked to Internet for free download by all, way ahead of official Microsoft release.

The final RTM of SP2 for Windows Server 2008 and Windows Vista has the file build version of 6002.18005, with full string of 6.0.6002.18005, as mentioned in article about SP2 RTM-Escrow, and confirmed by Windows Team Blog post. mychaelo has posted on My Digital Life forums the leaked Windows Vista and Windows Server 2008 standalone setup installers, for both 32bit and 64bit, in the form of RapidShare and DepositFiles HTTP download links plus torrents for BT download.

Windows Vista and Windows Server 2008 SP2 RTM

32-bit (x86) Windows Vista and Server 2008 SP2 RTM (All 36 Languages)

BUILD: 6002.18005
FILE: Windows6.0-KB948465-X86.exe
SIZE: 475,67 Mb
CRC32: 8D07A886
MD5: cad218b99fc301836e385049c75f5eaf
SHA-1: 7f8aa802e157282d84cf47950281de53a8c26f22

HTTP: Windows6.0-KB948465-X86.exe
BT Torrent: Windows6.0-KB948465-X86.torrent

64-bit (x64) Windows Vista and Server 2008 SP2 RTM (All 36 Languages)

BUILD: 6002.18005
FILE: Windows6.0-KB948465-X64.exe
SIZE: 745.67 MB
CRC32: 19C1676E
MD5: db35df98ae5a6fd085386580a6ee8b55
SHA-1: f0e46deb7734b8ed277b0cf2304ee2babc4d9b1c

HTTP: Windows6.0-KB948465-X64.exe
BT Torrent: Windows6.0-KB948465-X64.torrent

The standalone setup installer for Windows Vista and WS 2008 SP2 contains all 36 languages to support all localized operating system. No need to wait for any separate language waves to be released. However, for Windows Vista users who want to download a smaller SP2 update files, standalone SP2 installers for specific waves are also available.

32bit (x86) Windows Vista and Server 2008 SP2 RTM (Wave 0 - English, Japanese, Spanish, German and French)

BUILD: 6002.18005.090410-1830
FILE: Windows6.0-KB948465-X86.exe
SIZE: 365,230,920 bytes
CRC: 3368C777
MD5: C9394FD32DB15619328AF4FF0315750A
SHA1: 106C0484D7449CC4B70353C21D0C0D63E4BA66C3

HTTP Download: MICROSOFT.WINDOWS.VISTA.AND.SERVER.2008.SP2.RTM.X86.W0.RIP.DVD-WZTiSO.rar
BT Torrent: MICROSOFT.WINDOWS.VISTA.AND.SERVER.2008.SP2.RTM.X86.W0.RIP.DVD-WZTiSO.torrent

64bit (x64) Windows Vista and Server 2008 SP2 RTM (Wave 0 - English, Japanese, Spanish, German and French)

BUILD: 6002.18005.090410-1830
FILE: Windows6.0-KB948465-X64.exe
SIZE: 605,410,472 bytes
CRC: 1737E14D
MD5: A3BCB1FFDB366397FA5FAB0898EB098D
SHA1: BE8D74ADC029FA7350FC1F0D32BEF853C0519A92

HTTP Download: MICROSOFT.WINDOWS.VISTA.AND.SERVER.2008.SP2.RTM.X64.W0.RIP.DVD-WZTiSO.rar
BT Torrent: MICROSOFT.WINDOWS.VISTA.AND.SERVER.2008.SP2.RTM.X64.W0.RIP.DVD-WZTiSO.torrent

Windows Vista Users will require to download and install Windows Vista SP1 prior to updating SP2. Officially, the roll out of Windows Vista SP2 and Windows Server 2008 SP2 via Windows Update will take months, although the installer will make available publicly soon, during the second quarter of 2009. Those not intends to install SP2 onto their system should download and install Windows Service Pack Blocker Tool Kit. However, Windows Vista SP1 will be made mandatory and started to deploy to all Windows Vista soon.

For Windows users who prefer to fresh install Windows Vista with SP2 from clean state (after reformatting hard disk), Windows Vista with SP2 slipstreamed or integrated DVD ISO images are also leaked to Internet.

23 Nisan 2009 Perşembe

Hack to Retrieve and Get Windows Experience Index (WEI) Score of Remote Computer

Windows Experience Index (WEI) is a rating score (how to change WEI rating) that giving to a computer to gauge and benchmark the relative performance of the computer and its capability when running Windows Vista, Windows 7 and Windows Server 2008 (including R2 edition) operating system. WEI subscores and base score are calculated by a free benchmarking command-line utility called WinSAT.

For system administrators or network management managers who need to gather and retrieve Windows Experience Index rating score from many networked computers remotely, the following VBScript may help to get the score number. The VBScript will access the new WMI class called Win32_WinSAT to retrieve the WEI system accessment information from the remote computer. However, the VBScript only works on computer running operating system with WinSAT only, such as Windows Vista and newer OS such as Windows 7.

Copy and paste the following VBScript code below into a text editor such as Notepad, and then save it as any name with .vbs extension, such as WEIScore.vbs.

strCompName = Inputbox("Get Hardware Performance Ratings" & vbcrlf & "of a Remote computer," & vbcrlf & "Input the Computer Name:")

Set objWMIservices = GetObject("winmgmts:\\" & strCompName & "\root\cimv2")
Set colWSA = objWMIservices.ExecQuery("Select * From Win32_WinSAT")

For Each objItem in colWSA
Wscript.Echo "Hardware Performance Ratings"
Wscript.Echo "Processor : " & objItem.CPUScore
Wscript.Echo "Memory: " & objItem.MemoryScore
Wscript.Echo "Graphics: " & objItem.GraphicsScore
Wscript.Echo "Gaming graphics: " & objItem.D3DScore
Wscript.Echo "Primary hard disk: " & objItem.DiskScore
next

Double click on the VBS file to run the script. Enter the desired remote computer name in order to get the Windows Experience Index rating of the target system. If the “Error: The remote server machine does not exist or is unavailable: ‘GetObject’” error message is displayed, it means that the remote computer name is wrong, or unreachable.

Microsoft Network Monitor 3.3 released

Network Monitor 3.3 is a protocol analyzer. It allows you to capture network traffic, view and analyze it. Version 3.3 is an update and replaces Network Monitor 3.2. Network Monitor 3.x is a complete overhaul of the previous Network Monitor 2.x version.

The Network Monitor core engine has been decoupled from the parser set. To install the full Network Monitor 3.3 product: • Run the setup.exe for the platform you are installing. • You will be prompted first to install the core engine. Follow the installation directions. Make sure you close existing instances of netmon.exe, nmcap.exe and any running NMAPI applications. • Next you will be prompted to install the parser package. Follow the installation directions. To uninstall the full Network Monitor 3.3 product: • Go to Add/Remove Programs in Control Panel • Uninstall both Microsoft Network Monitor 3.3 and Microsoft Network Monitor: Microsoft Parsers 3.3.

Download

28 Mart 2009 Cumartesi

More Windows Mobile 7 screenshots emerge with Zune UI

WMPoweruser has posted some more alleged screenshots of Windows Mobile 7. The screenshots Neowin sighted earlier showed the Today Screen and the Maps utility. The new screenshots shown below, give us a picture of Windows Mobile Marketplace, IM and Zune, possibly from the Windows Mobile 7 UI.



Unlike the earlier screenshots which had a date of October 16, these screenshots reveal no such date details, so as to give away the time this UI was devised and tested.

If these screenshots are from Windows Mobile 7, then the Zune UI confirms the recent rumor that Zune is indeed coming to Windows Mobile 7. Windows Mobile 7 would allow users to wirelessly download music from the Zune Store and billed through the carrier/operator (Over the air downloads via carrier's network), making the bill payments easier. It is quite possible that carriers could bundle a subscription to Zune music with an unlimited data package.

Also, we have to wait and see whether this will expand Zune outside U.S as currently Zune is available only to U.S

Images Courtesy: WMPoweruser

20 Mart 2009 Cuma

Internet Explorer 8.00.6001.18702 - Final



Internet Explorer 8 takes the Web experience beyond the page and introduces a new way to seamlessly experience the power of the Web whether you are a Web developer writing to standards, or an end user discovering a new online service. This beta release is available to everyone, but is primarily for Web developers and designers to test the new tools, layout engine, and programming enhancements.

Internet Explorer 8 (IE8) has been designed to make everyday tasks easier, provide dynamic security protection and improve the development platform and manageability. End user improvements include a streamlined interface, tabbed browsing, printing advances, improved search functionality, instant feeds (RSS), dynamic security protection, and more.

This RC version of Internet Explorer is for web developers and designers. We invite you to use the resources listed below to learn about the improvements, changes and new features available in this release.

"This release contains some great advances in Cascading Style Sheets (CSS) and layout, programming model, performance, reliability, usability and service integration. We are eager to ensure that the transition to Internet Explorer 8 is seamless for you and your audience, and to give you a head start on using many of the new features with your sites and services. We encourage you to test your sites and services, and our platform implementation, and give us feedback!"

Developers and designers of all skill levels need great tools to deliver modern websites and write more efficient code without having to switch between the browser and a separate development environment. Internet Explorer 8 includes built-in tools that work well for professionals as well as those trying CSS and scripting for the first time.

- Debug JavaScript
- View and change the document object model (DOM)
- CSS 2.1
- Data URI
- AJAX enhancements including navigation
- Resources

New and exciting features

Windows Internet Explorer 8 Release Notes

Homepage - http://www.microsoft.com

Download Internet Explorer 8 for Windows XP/2003 x32 - 16.1 MB

Download Internet Explorer 8 for Windows XP/2003 x64 - 32.4 MB

Download Internet Explorer 8 for Windows Vista/2008 x32 - 13.2 MB

Download Internet Explorer 8 for Windows Vista/2008 x64 - 24.1 MB

20 Şubat 2009 Cuma

Windows Vista SP2 RC build released to testers

TechARP predicted last month that RC-Escrow build of SP2 for Windows Vista and Windows Server 2008 will be released between the dates Jan 26-30 and the RC build between the dates Feb 16-20. The RC Escrow build of SP2 was sent to testers at the end of January and the rumor is that now Microsoft has released the RC build of SP2 to Microsoft Connect testers exactly between the dates predicted by TechARP.

Ars reports that RC build is available for download as a standalone installer package or via Windows Update or as a slipstreamed download which includes 691 individual hotfixes. Public beta of SP2 was released in December 2008 and the final release is expected to happen around April or May according to TechARP.

Windows 7 also appears to be moving towards the release candidate build at the end of February, which raises a serious discussion over whether users would still stay on Vista or jump to Windows 7. Not to forget that Windows 7 is also rumored to hit RTM in August.

5 Aralık 2008 Cuma

Windows Vista Service Pack 2 Beta

e8470b71-9cd0-4d06-87db-52cf73cc5065

The articles below are specific to the Beta release of Windows Vista Service Pack 2. You can use this information to evaluate and deploy Windows Vista Service Pack 2 Beta.

For information about Windows Vista, see Windows Vista Technical Library Roadmap.

To download Windows Vista SP2 Beta, see Windows Vista Service Pack 2

Product Evaluation

Frequently Asked Questions: Windows Server 2008 Service Pack 2 Beta and Windows Vista Service Pack 2 Beta

This article provides answers to some of the most common questions about the Beta release of Windows Server 2008 SP2 and Windows Vista SP2.

Notable Changes in Windows Server 2008 SP2 Beta and Windows Vista SP2 Beta

This document describes the notable changes made to Windows Server 2008 and Windows Vista in Service Pack 2, which were focused on addressing specific reliability, performance, and compatibility issues, supporting new types of hardware, and adding support for several emerging standards, and lists all the hot fixes and security updates included in this service pack.

Windows Vista SP2 Beta and Windows Server 2008 SP2 BetaTest Focus Guide

This guide provides scenarios for testing and evaluating the changes in the Beta release of Windows Vista SP2 and Windows Server 2008 SP2.

Getting Started

Release Notes for this Beta Release of Windows Vista Service Pack 2

These release notes address late-breaking issues and information related to Windows Vista SP2 Beta.

Hotfixes and Security Updates in Windows Server 2008 SP2 Beta and Windows Vista SP2 Beta

This document lists all the hotfixes and security updates included in the Beta release of Windows Server 2008 SP2 and Windows Vista SP2.

Deployment

Windows Vista Service Pack 2 Deployment Guide

This guide includes technical information, procedures, and recommendations for deploying Windows Vista SP2 Beta in a business or corporate environment.

See Also

Other Resources

Download Windows Vista Service Pack 2 Beta

13 Kasım 2008 Perşembe

Vista Transformation Pack 9.0



Vista Transformation Pack will give to your Windows XP system the new and cool look of Microsoft's future operating system: Windows Vista. The pack changes most of the system icons, skins and toolbars and also adds new enhancements to your desktop such as a dock bar or a different system tray clock. It is free and does a great job of giving machine a look similar to Vista.

It does have uninstallation options in case you decide you want to get rid of it, so there really isn’t anything to lose. However, when you install the software it has to overwrite some system files (it modifies things like the boot screen) so Windows will prompt you stating that your system files have been changed. It will ask whether you want to change them back or leave them, so just leave them if you want the system to function properly.

Features of "Vista Transformation Pack":
• Boot screen
• Welcome Screen / Logon Screen
• New msstyles files (visual styles)
• New desktop and file icons
• New toolbar icons
• Progress Dialogs
• Sounds scheme
• System Tray icons
• New Wallpapers
• Windows Media Player Skins

Vista Transformation Pack 9.0 Keynotes:

New 3rd-party applications
ViSplore - Vista Glass explorer simulator
Vista Drive Icon - adding free space percentage in your drive icon like Vista explorer
Vista Rainbar - Lightweight Vista sidebar based on Rainmeter that even consume less resources than real Vista Sidebar

Improved 3rd-party applications
ViStart - Files indexing for documents search, improved reliability and compatibilities
ViOrb - Improved graphic and reliability (C++ re-written)
TrueTransparency - Improved reliability with improved AeroStyle's glass border
WinFlip - Improved stability and reliablity

New functionalities
Setup personization - Allow customizing Vista experiences upon installation without access to Welcome Center
Windows XP Service Pack 3 compatibilities - Now you can enjoy Vista themes after installation with Windows XP Service Pack 3
x64 compatibilities - More secured x64 installation without getting hurt by incompatibilities

There're also a lot of bug fixes and refinements in the program but let's just keep it simple with these for now. You can experience the rest later by yourself.

Changes in Version 9.0
-Added Gavatx's Vista Rainbar 4.3 (Slim) in place of Thoosje's Vista Sidebar
-Added large icon resizing option for high resolution monitors
-Added Personalization setup screen for configuring current user account before installation
-Added running ViStart, ViOrb and ViSplore to WindowBlinds and TrueTransparency's exclusion list (prevent stability issues)
-Added ViSplore project (Vista Glass Explorer for Windows XP/2003)
-Added Vista Drive Icon in place of Vista Windows Drive Icon
-Added Windows XP Service Pack 3 uxtheme patching compatibilities
-Fixed automate 3rd-party applications optimization requirements
-Fixed graphic driver detection issues in transformation package for cases that doesn't use the first slot of driver
-Fixed OS detection incompatibilities with Windows Vista
-Fixed possible errors when auto-configuring user account during installation without "Express Mode"
-Fixed Thoosje Sidebar's auto-configuration bug on some resolutions.
-Fixed uninstallation script to terminate newly added applications such as WinFlip, TrueTransparency, etc.
-Fixed Vista orb positioning in "System Properties" dialog
-Fixed WindowBlinds' installation detection bug in configure user account dialog
-Updated Aero Style's glass border for more visibility and less distortion for both WindowBlinds and TrueTransparency
-Updated AeroStyle's glass border in TrueTransparency to simulate "little-blurring-like" WindowBlinds
-Updated boot screen to traditional ones without Vista flag
-Updated configure user account's installed components and applications UI
-Updated "Glass" sounds scheme from Windows Vista's Ultimate Extras
-Updated installation branding bar image
-Updated TrueTransparency to version 0.9.4
-Updated ViOrb to version 1 (C++ re-written)
|-Added start orb's right click menu
|-Fixed hook recovery when explorer shell is reloaded
|-Fixed always on top visibility issues with some applications including ViStart
|-Updated start orb graphic to for all sides compatibilities
-Updated ViStart to version 2.0 build 3467
|-Added font customization feature in settings.xml
|-Added indexing file search support like Vista (you can search for extension with .ext)
|-Added "Reset Shell" in menu option to reload explorer along with ViStart
|-Added multi-DPI Support
|-Fixed Chinese characters issue with Recent Documents
|-Fixed hook recovery when explorer shell is reloaded
|-Fixed start menu's hooking reliability with full screen and resolution changes
|-Fixed strange ActiveX errors
-Updated Visual style's top taskbar background to have the same image as bottom's like Vista
-Updated WinFlip to version 0.50
-Updated wording in some areas for easier understanding
-Updated x64 operating systems compatibilities

Homepage - http://www.windowsxlive.net

Size: 26.8 MB

Download

23 Ekim 2008 Perşembe

Windows 7 to RTM within a year?

Microsoft has let the cat out of the bag a week early and stated "there is not another WinHEC planned before Windows 7 is released."

Blogger Long Zheng noticed the admission on Microsoft's WinHEC 2008 site.

As the WinHEC conference is an annual affair, providing the conference isn't cancelled next year then this would put Windows 7 on target for a RTM before November next year.

The revelation follows comments from ASUS CEO Jerry Shen discussing the future of the ASUS Eee PC in an interview with Laptop Mag. "I think in the future in the second half of next year we will put Windows 7 on Eee PCs" said Shen.

If all of this is true and Microsoft is on target with Windows 7 then recent rumours of a Beta 1 in December would not be far off.

Microsoft will be unveiling the full Windows 7 desktop during a keynote by Steven Sinofsky at its professional developers conference in Los Angeles next Tuesday. Attendees will also be given access to a pre-beta build during the PDC.

18 Ekim 2008 Cumartesi

Vista SP2? Information about Windows Server 2008 Service Pack 2 and Windows Vista Service Pack 2

loadTOCNode(1, 'notice'); This article discusses a beta release of a Microsoft product. The information in this article is provided as-is and is subject to change without notice.

No formal product support is available from Microsoft for this beta product. For information about how to obtain support for a beta release, see the documentation that is included with the beta product files, or check the Web location where you downloaded the release.

INTRODUCTION

loadTOCNode(1, 'summary');
This Microsoft Knowledge Base article will be updated with more information about Windows Server 2008 Service Pack 2 (SP2) and Windows Vista Service Pack 2 (SP2) when the information becomes available. Currently, the product release notes and related information about Windows Server 2008 SP2 and Windows Vista SP2 are not available.

1 Mayıs 2008 Perşembe

VistaMizer 2.5.1.0

VistaMizer description
Change the appearance of your Windows XP by giving it the Vista look!

VistaMizer modifies your system files, so that when you reboot after installing VistaMizer, you won't even remember how your old desktop looked like.

With VistaMizer you are now able to transform your Windows XP, MCE or Server 2003 by giving it the look of Windows Vista. Therefore over 380 files with new Icons, pictures as well as videos are modified.

This means that VistaMizer does not provide own files and change your system files. That has the advantage that VistaMizer works with each language and no changes of the language specifics are made.

The installer is so developed that you have completely the change which will be modified and which not. Even
if you select files, which are possibly not at all on your system available or not compatible, the application recognizes this and jumps over these. This ensures that the system does not become unstable because of wrong modification.

After updates if your system data are overwritten, then a renewal of these is possible by using an extra program that is linked by the VistaMizer. The application examines thereby, which files are updated and re-modify only these. This means a very fast re-modification and it is always the current data in the Backup.

However if the result of the installation should not assure to you, you have the possibility to get back the old system by an un-installation. If newer files are already present in the system by updates, this is recognized by the un-installer and only the modified files will be replaced.

Here are some key features of "VistaMizer":

· Vista-Look for Windows XP, MCE or Server 2003
· Modification of the own system files
· multilingual
· completely free choice for the modification files
· check the files for compatibility during the installation
· backup from the original system files
· re-modification of the system files after Windows Updates
· rebuilding of the original system files with un-installation


What's New in This Release:

· problem with the assumption of the sounds, barrier PAPER, etc. repaired
· errors with the De-Installations routine repaired...
http://www.softpedia.com/get/Desktop-Enhancements/Themes/VistaMizer.shtml

26 Mart 2008 Çarşamba

Windows XP Service Pack 3 Build 5508

Microsoft Windows XP Service Pack 3 (SP3) provides new proactive security technologies for Windows XP to better defend against viruses, worms, and hackers along with increased manageability and an improved experience for users.

Microsoft Windows XP Service Pack 3 fixes a range of bugs in Windows XP. It doesn't matter what XP updates you have previously applied to your system, SP3 will update any unpatched, partially patched or completely updated system (it includes all previously released patches and updates). XP SP3 fixes the security holes so you won't get attacked.

Microsoft periodically combines updates, fixes, and other improvements into a single package - Service Pack. Microsoft develops updates, fixes, and other improvements that address issues reported by the company’s customers and partners. To make it easier for customers to get these updates and enhancements, Microsoft periodically combines them into a single package, and makes that package available for all Windows customers.

These packages are called service packs", Microsoft revealed in the introduction of the Overview of Windows XP Service Pack 3. With the Release Candidates of Vista SP1 and Windows Server 2008 heading to increased testing pools the past week, and with Microsoft cooking the first public build of the first refresh for its latest Windows client, the official overview for XP SP3 is the only crumb from the service pack fiesta over at the Redmond company. The Release Candidate of XP SP3 in a pre-final stage has already shipped to MSDN and TechNet subscribers.

Homepage - http://www.microsoft.com/windowsxp/

Size: 316 MB

Download

Download from page

9 Şubat 2008 Cumartesi

Windows Vista Automated Installation Kit (AIK) for Windows Vista SP1 and Windows Server 2008

MiscellaneousHelps you to install, customize, and deploy the Microsoft Windows Vista family
Windows AIK (Windows Automated Installation Kit) will help you customize, install and deploy the Microsoft Windows Vista family of operating systems.
The Windows Automated Installation Kit (Windows AIK) is designed to help corporate IT professionals customize and deploy the Windows Vista and Windows Server 2008 family of operation systems. By using Windows AIK, you can perform unattended Windows installations, capture Windows images with ImageX, and create Windows PE images.

Windows AIK will help original equipment manufacturers (OEMs), system builders, and corporate IT professionals deploy Windows onto new hardware. The Windows AIK is a set of deployment tools supporting the latest release of Windows. This guide describes the methods, tools, and requirements for deploying Windows.

Homepage - http://www.microsoft.com

Size: 1196 MB

Download