Here’s a little AppleScript Droplet to clear all Extended Attributes in OS X. This is useful to delete the famous com.apple.quarantine attribute.

  • Create a new script in AppleScript Editor
  • Copy and paste the code
  • Save as an application under the name Clear-Extended-Attributes.app

Then, you can simply drag an drop files or folders on the application.

(*

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

 

C L E A R   E X T E N D E D   A T T R I B U T E S

 

Delete all extended attributes from one or many files

under OS X

 

Author : Jean-Pierre.Paradis@fsa.ulval.ca

Date : 2 octobre 2012

Version : 1.00

Language : AppleScript (Droplet)

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

*)

 

tell application "Finder" to display alert "Please drop file(s) or folder(s) on this application to delete all extended attributes" as informational

 

on open Dropped_Things

      repeat with Item_index from 1 to the count of Dropped_Things

             set Dropped_Item to item Item_index of Dropped_Things

             set Dropped_Item_Info to info for Dropped_Item

             if folder of the Dropped_Item_Info is true then

                   Process_Folder(Dropped_Item)

             else

                   Process_File(Dropped_Item)

             end if

      end repeat

end open

 

-- this sub-routine processes files

on Process_File(File_Item)

      set File_POSIX_path to POSIX path of File_Item

      set File_Item_Info to info for File_Item

      display dialog "Processing '" & (name of File_Item_Info) & "' ..." with icon note buttons {"Ok"} with title "Clear Extended Attributes" giving up after 1

      do shell script "xattr -c '" & File_POSIX_path & "'"

end Process_File

 

-- this sub-routine processes folders

on Process_Folder(Folder_Item)

      set Folder_Content to list folder Folder_Item without invisibles

      repeat with Item_index from 1 to the count of Folder_Content

             set Folder_Content_Item to alias ((Folder_Item as Unicode text) & (item Item_index of Folder_Content))

             set Folder_Content_Item_Info to info for Folder_Content_Item

             if folder of Folder_Content_Item_Info is true then

                   Process_Folder(Folder_Content_Item)

             else

                   Process_File(Folder_Content_Item)

             end if

      end repeat

end Process_Folder

Read More

It’s part of the Windows Management Framework 3.0.
It’s included with Windows 8 and Windows Server 2012, but it can be installed on

  • Windows 7 SP1,
  • Windows Server 2008 R2 SP1 &
  • Windows Server 2008 SP2

To download : www.microsoft.com/en-us/download/

You may also take a look at Windows PowerShell 3.0 and Server Manager Quick Reference Guides

Read More

Let’s touch on some of the highlighting features of PowerShell 3.0.

Link : PowerShell 3.0 overview – Part 1 from 4SysOps

Read More

Many companies are happy with the features SharePoint provides out of the box. Usually the only customization they want to do is change the webpage layouts and design to make them go along with their corporate design. For this purpose, they have a production SharePoint farm and one for test purposes. The customizations are done with SharePoint Designer on the test farm, and after they have been tested thoroughly they are rolled out to the production farm. But, more often than not, the day comes when SharePoint Designer isn’t enough and the SharePoint developer has to take the next step up to Visual Studio.

Source : 4sysops.com

Read More

While users of other email services need to access third party services to send huge files over the Internet, Outlook.com offers a better, more seamless experience: Attachments that exceed the service’s 10 MB attachment limit can simply be transmitted via SkyDrive instead. Put simply, Outlook.com users never need to worry about these limits.

Source : Paul Thrrott's Supersite for Windows

Read More

Another day, another provocative research report from Gartner, which has a long track record of spectacularly wrong predictions. I've collected some of their greatest hits. Er, misses.

Read the article @ www.zdnet.com

Read More

The free SolarWinds Diagnostic Tool for the WSUS Agent is designed to diagnose and even suggest corrections to common WSUS/agent issues.

Source : 4sysops.com, www.solarwinds.com

Read More
Read More

ADREPLSTATUS screenshot

ADREPLSTATUS has a nice Office-like GUI with a ribbon and can replace RepMon or RepAdmin of the Windows 2000 support tools.

Source : 4sysops.com 
Download : www.microsoft.com

Read More
Fast vs. Fast - Volkswagen Jetta GLI vs. Speed Talker
Fast vs. Fast - Volkswagen Jetta GLI vs. Speed Guitarist
Read More

CircleOfTime

Read More

Microsoft’s new Surface tablets are exquisitely engineered, and no one can accuse them of being me-too products. Yesterday’s launch was impressive, but it also left many questions unanswered.

Read the full article : The Ed Boot Report

Read More

At the time of this writing, the feature list is probably not yet complete. I will update this list whenever I stumble upon a new feature and post the update in the 4sysops news streams

Link : 4sysops.com

Read More

This week Apple rolled out a new version of Safari that includes a security-related feature aimed at Mac OS X 10.6 (Snow Leopard) and OS X Lion.

If you read Apple’s official announcement, you might think that Safari 5.1.7 will protect you from exploits that target vulnerabilities in outdated versions of Adobe Flash Player. That would be a fine feature indeed, except that Apple’s more detailed documentation says it does no such thing.

Source : www.zdnet.com/blog/bott

Read More

It’s been said, Microsoft Windows 8 won’t include DVD playback. Not necessarily a bad thing.

If you want to understand a little bit more about this, I suggest the 2 following articles by Ed Bott (ZDNet) :

Read More

XPERF, also known as Windows Performance Analyzer, ships as part of the Windows Performance Tools (WPT) kit. The latest WPT ships as part of the Windows SDK for Windows 7 and .NET Framework. The WPT consists of:

  • XPERF – an interactive trace capturing tool used in this case to enable ETL tracing of a slow user logon clearly not caused by the background loading of the OS (that is, a slow boot).
  • XBOOTMGR – enables ETL tracing, reboots the host computer then stops capturing N # of (default 120) seconds after user logon for 1) slow boot scenarios and 2) slow logons caused by delays in the OS boot process.
  • XPERFVIEW – views ETL traces captured by XPERF or XPERFVIEW in a graphical format linked with rich numerical reports and stack traces data to drill into delays for impacted and root cause components and functions.

Source : social.technet.microsoft.com/wiki

Read More

This breakdown of Kerberos settings and how they correspond to AD provides much-needed clarity

This ongoing need to clarify how Kerberos works and how it fails is a result of the fact that—although Kerberos remains the same—the services that use it and the ways they use it are often unique. The aspects that remain the same in each scenario, however, are what the settings in Active Directory (AD) are intended to address, and the difficult-to-interpret messages you’ll see when things fail.

Source : www.windowsitpro.com

Read More

A pair of high-profile malware attacks have given Apple a crash course in security response. Based on recent actions, 70 million current Mac owners have a right to expect much more from Apple than they’re getting today.

Eugene Kaspersky last week argued that Apple is “ten years behind Microsoft in terms of security.”

Source : The Ed Boot Report

Read More

Microsoft made available for download a new release of its free anti-virus/anti-malware program for Windows PCs, Microsoft Security Essentials (MSE), on April 24.

The MSE 4.0 release is available via the Microsoft Download Center and the MSE Web site. (I learned of its availability from a post on Neowin today.) The latest version runs on Windows XP, Windows Vista and Windows 7.

Source : www.zdnet.com/blog/microsoft

Read More

This morning, even a bit earlier than we expected, Omar Shahine and Mike Torres posted on the Building Windows 8 blog on the new updates to SkyDrive that “make personal cloud storage for Windows available anywhere”

Immediately upon opening SkyDrive in the browser (once you are signed in), you’ll see a notice about something we hinted at the other day: future users are only going to be allowed 7 gb of free storage, instead of the 25 gb offered now. This is still bigger than Dropbox’s 2gb, or even the long rumored Google G Drive, which is said to be offering 5 gb

However, as early adopters, we’re getting a sweet deal: just click on the link in that message, which brings you to the managed storage page.

…click on the Free upgrade button, and you’ll keep your 25gb as free storage. From here, too, you can manage paid storage options, adding 100 gb of storage for $50/year.

Source : www.liveside.net

Read More

New features include:

  • Support for System Center 2012 Configuration Manager
  • Integration with Microsoft Diagnostics and Recovery Toolset 7 (DaRT) and Security Compliance Manager (SCM)
  • Support for Windows 8 Consumer Preview for deployments in a lab environment
  • Support for Windows Server “8” Beta

Source : Microsoft Deployment Toolkit Team Blog 

Read More

In terms of desktop management, Group Policy is the cornerstone of a Windows administrator’s arsenal. With Group Policy, you can deploy software, printers and drive mappings. You can configure default settings and manage client behavior. But how do you manage Group Policy? The built-in mechanics for managing Group Policy are simply inadequate for most organizations. Windows administrators either have complete access or no access by their addition and removal from the Group Policy Creator Owners Security Group. Further, Group Policy Object (GPO) management lacks in terms of change control, automated backups, and role based delegation. Microsoft’s Advanced Group Policy Management (AGPM) addresses all of these issues.

Source : 4sysops.com

Read More

Apple today has made good on its promise to release its own tool that detects and removes any instances of the Flashback malware onMac systems running Java. The tool is only available for systems running OS X 10.6 or later, and is bundled with a slightly updated version of the most recent Java runtime, but is a separate component that is installed and runs on its own.

Source : reviews.cnet.com

Read More

Today we're announcing Groups for Schools, which allow people with an active school email address to join groups at their college or university.

Source : newsroom.fb.com

Read More

Facebook is restricted to users under age 13, but according to a new survey, that hasn’t kept young children away.

MinorMonitor, a tool for parents to watch their children’s Facebook activities, surveyed 1,000 parents about how their children use Facebook, finding that 38% of children on Facebook are 12 and under. Of the 1,000 children represented by their parents, 40 were under age six.

Source : mashable.com 

Read More

A common question that I come across when I talk about IIS is, How do I keep track of my application pools? I want to know every time my app pool stops etc etc.
There are several ways we can do this. Simplest of all would be to write a script (AppCmd or IIS powershell snap-in) and run it to check status. However, what I wanted was to keep a side-by-side web front end using which I could track the app pool status through the web. This means I would need to have a web server running beside IIS to relay me the data.
Enter IIS Hostable Web Core (HWC).

Source : www.iisworkstation.com

Read More

The nightmare scenario for Mac owners is here. At least 600,000 Macs worldwide have been infected, silently, by the Flashback Trojan, with no user interaction required. Here’s why this is just the beginning of a long-term problem.

Source : The Ed Boot Report 

Read More

IPMI (Intelligent Platform Management Interface) is a specification defined by Intel and adopted by a number of companies for standardizing hardware management, particularly in server systems. IPMI supports both in-band (from the operating system) and out-of-band (from the network direct to hardware) management. The protocol IPMI uses for out-of-band management is not based on WS-Management and not the focus of this blog post.

Available since Windows 2003 R2, Microsoft has developed a generic IPMI Driver and IPMI Provider in Windows to enable management of BMCs (Base board Management Controller) that implement IPMI. The IPMI Driver (IPMIdrv.sys) is essentially a light-weight “pass-through” driver which takes IPMI requests and returns IPMI responses. The IPMI Provider (IPMIprv.dll) takes the heavy load of converting between IPMI and CIM.

Source : Windows Management Infrastructure Blog 

Read More

One-third of mobile users say they've told others when they had a bad experience with a mobile app. But more than half say they've recommended an app based on a positive experience. Put yourself on the right side of that conversation with these seven best practices.

Article : drdobbs.com

Read More

Adobe just released a critical Flash Player security update. Good news: it includes a new automatic updater for Windows. Bad news: Adobe’s download page pushes a misleading “system optimizer” designed to scare users into paying for unneeded repairs.

Source : The Ed Boot Report

Read More

Microsoft® Script Explorer for Windows PowerShell® (Script Explorer) helps scripters find Windows PowerShell scripts, snippets, modules, and how-to guidance in online repositories and local or remote file systems. This collection of documents describe how to deploy, install, and configure Script Explorer, and how to configure the local and network file system repositories and the aggregation web service.

The documentation for Microsoft Script Explorer for Windows PowerShell is listed below.

Source : social.technet.microsoft.com/wiki

Read More

Anyone who regularly uses Log Parser 2.2 knows just how useful and powerful it can be for obtaining valuable information from IIS (Internet Information Server) and other logs. In addition, adding the power of SQL allows explicit searching of gigabytes of logs returning only the data that is needed while filtering out the noise. The only thing missing is a great graphical user interface (GUI) to function as a front-end to Log Parser and a ‘Query Library’ in order to manage all those great queries and scripts that one builds up over time.

Log Parser Studio was created to fulfill this need; by allowing those who use Log Parser 2.2 (and even those who don’t due to lack of an interface) to work faster and more efficiently to get to the data they need with less “fiddling” with scripts and folders full of queries.

With Log Parser Studio (LPS for short) we can house all of our queries in a central location. We can edit and create new queries in the ‘Query Editor’ and save them for later. We can search for queries using free text search as well as export and import both libraries and queries in different formats allowing for easy collaboration as well as storing multiple types of separate libraries for different protocols.

Source : blogs.technet.com/b/exchange

Read More

Are you planning to test the Windows 8 Consumer Preview? Make sure you pick up a product key. Unlike Windows 7, you can’t skip this box and fill in a key later.

Read the complete post from Ed Boot.

Read More

Looks like there is a GPO settings to force Windows to not show the start menu when you log in (aka start Desktop) … but un fortunately it works only on with Windows Server 8 Beta !

Read Alan Burchill post on Group Policy Central to get all the details.

Read More

Over at ZDNet, I’ve put together a blog post that explains why some Windows 8 testers are unhappy with the Metro style Start screen. I also have some recommendations on how to customize Start to overcome some of those objections.

I explain, in detail, how to give your Start screen a complete makeover so it becomes a useful gateway to the Windows desktop. I also introduce a handful of keyboard shortcuts that will make switching between the Start screen and the desktop much easier.

The blog post is here.

For the step-by-step instructions, see The Metro hater’s guide to customizing Windows 8 Consumer Preview.

Here’s what you’ll find in that gallery:

It also includes the five Windows 8 keyboard shortcuts you must know:

Much of this material will, of course, appear in the upcoming revision of Windows 8 Head Start.

Source : Ed Bott

Read More

If you have been following all the good press around Windows 8 and are waiting to try it on your own computer, here’s the good news. The consumer preview version of Windows 8 (just a fancy name for beta software) is now available for download and it is very likely that your existing system specs are good enough to run Windows 8.

The System Requirements for Windows 8

Should you download Windows 8 Setup or the ISO Image?

Will my software programs run inside Windows 8?

What route should you take?

Source : Digital Inspiration - Technology Blog

Read More

The next GTI will be an order of magnitude better, bringing it back in line with the original hot hatch.

Lighter, faster, stronger, better. That's what we can expect from the seventh-generation Volkswagen Golf, due to be unveiled at the 2012 Paris Motor Show before it hits dealerships across Europe this fall and eventually lands on U.S. shores as a 2013 model.

So what makes it special? A combination of new manufacturing processes, an all-new platform, a range of upgraded engines and what will go down as one of the greatest democratizations of active safety and in-car technology in automotive history.

What's more, the next GTI will be an order of magnitude better because of it, bringing it back in line with the original hot hatch while packed with even more standard features.

...the turbocharged 2.0-liter – making use of Audi's Valvelift system – will max-out at 280 hp. But fear not, your front tires are safe. Sorta. The GTI variant is likely to be limited to around 230-240 hp, but torque will be up to nearly 260 pound-feet.

Source : Autoblog

Read More

So after launching Daemon Tools Lite today, I noticed a new pane on the right labeled MountSpace. Turns out, it’s a cute little service that shows the top games and applications that folks are mounting and using in Daemon Tools. And to deliver that experience, Daemon Tools hashes every image you mount and sends it to MountSpace servers with or without permission. Combined with your IP address, and probably more, it doesn’t take a genius to realize this is a huge privacy issue.

Source : Within Windows

Read More

Yesterday Google released Chrome 17. Read the What’s new in Chrome 17 from George B. Moga

Read More

The Windows 8 Consumer Preview will be available for download on February 29. Why isn’t it called a beta? Blame Google. And Apple. And Microsoft. Especially Microsoft.

Source : Ed Bott's Microsoft Report

Read More

Today I tried to do a sysprep of a Windows Server 2008 R2 x64 computer before capturing an image of it via imagex.

sysprep.exe /generalize /oobe /shutdown /unattend:unattend.xml

Everything went fine and the computer shutdown.

Then I rebooted the server and had a blue screen (BSOD) :

STOP: c000021a {Fatal System Error}
The session manager initialization system process terminated unexpectedly with a status of 0xc000003a (0x00000000 0x00000000).
The system has been shut down.

I found out that SYSPREP had made some changes to my Boot Configuration Data (BCD). Here’s an extract of my setupact.log file :

LaunchDll:Found 'C:\Windows\System32\spbcd.dll,Sysprep_Generalize_Bcd'; executing it
Sysprep_Generalize_Bcd: Located BCD store on system drive. Generalizing it...
GeneralizeBcdStore: Found the memory tester object.
GeneralizeBcdStore: Found the Windows OS Loader object {bb3f7e5d-3afe-11e1-908d-0010184c4562} for the currently running OS.
GeneralizeBcdStore: Found the resume object {bb3f7e5c-3afe-11e1-908d-0010184c4562} for the OS loader.
GeneralizeBcdStore: System drive backed by VHD = 0
GeneralizeBcdStore: Generalizing object {9dea862c-5cdd-4e70-acc1-f32b344d4795}
GeneralizeBcdStore: Successfully generalized application device. Status = [0x0]
GeneralizeBcdStore: Generalizing object {b2721d73-1db4-4c62-bf78-c548a880142d}
GeneralizeBcdStore: Successfully generalized application device. Status = [0x0]
GeneralizeBcdStore: Generalizing object {bb3f7e5d-3afe-11e1-908d-0010184c4562}
GeneralizeBcdStore: Successfully generalized application device. Status = [0x0]
GeneralizeBcdStore: Successfully generalized OS device. Status = [0x0]
GeneralizeBcdStore: Generalizing object {bb3f7e5c-3afe-11e1-908d-0010184c4562}
GeneralizeBcdStore: Successfully generalized application device. Status = [0x0]
GeneralizeBcdStore: Successfully generalized hiberfile device. Status = [0x0]
Sysprep_Generalize_Bcd: Successfully generalized the bcd store. Status=[0x0]
LaunchDll:Successfully executed 'C:\Windows\System32\spbcd.dll,Sysprep_Generalize_Bcd' without error

So, after running sysprep /generalize my BCD looked like this :

Windows Boot Loader
-------------------
identifier              {default}
device                  locate=\windows\system32\winload.efi
path                    \windows\system32\winload.efi
description             Windows Server 2008 R2
locale                  en-us
inherit                 {bootloadersettings}
osdevice                locate=\windows
systemroot              \windows
resumeobject            {bb3f7e5c-3afe-11e1-908d-0010184c4562}
nx                      OptOut
detecthal               Yes

Did you noticed the locate=… value for the device and osdevice entries ? Well it seems that those new values were causing my blue screen.

I restored the previous values (before Sysprep) with the following commands :

bcdedit /set {default} device partition=C:
bcdedit /set [default} osdevice partition=C:

After that, my computer was able to boot again.

I’m not sure, but i suspect that this little mixed up with the BCD Store maybe related to how I partitioned my disk :

WinPE
Size 900Mb, boot WinPE to capture or apply an image from imagex
ESP
Size 100Mb, EFI System Partition, Active Partition
Microsoft Reserved
Size 128Mb
Windows
Size 120Gb, C: drive
Data
Size 400Gb, E: drive

My disk is initialize as a GPT disk and this is an EFI Computer.

My recommendation

Always make a backup of the BCD store before running SYSPREP :

bcdedit /export backupbcd.bcd

Read More
Today I wanted to find a way to flush the IIS FTP logs on-demand.  The logs for IIS FTP flush to disk every 6 minutes, and the HTTP logs every 1 minute (or 64kb).  This can make troubleshooting difficult when you don’t receive immediate access Read More......(read more)

Source : The Official Microsoft IIS Site

Read More
A utility to help system administrators diagnose and repair problems with the WMI service.

Source : Microsoft Download Center

Read More

The transition to a plug-in free Web is happening today. Any site that uses plug-ins needs to understand what their customers experience when browsing plug-in free. Lots of Web browsing today happens on devices that simply don’t support plug-ins. Even browsers that do support plug-ins offer many ways to run plug-in free.

Metro style IE runs plug-in free to improve battery life as well as security, reliability, and privacy for consumers. Previously, we wrote about how we use IE’s Compatibility View List to make sure sites that have a plug-in free experience for other browsers provide that same experience to IE10 users. This post describes a way for sites that continue to rely on plug-ins to provide consumers browsing with Metro style IE the best possible experience.

Developers with sites that need plug-ins can use an HTTP header or meta tag to signal Metro style Internet Explorer to prompt the user.

Source : IEBlog

Read More
Compat Inspector is now available for IE10. Use Compat Inspector to quickly identify if Internet Explorer platform changes affect your site. Whether you're preparing for IE10 or still updating for IE9, run Compat Inspector on any page experiencing problems. Then watch for messages explaining potential issues and steps you can take to resolve them.
Source : IE10 Compat Inspector - IEBlog
Read More

This article introduces Group Policy Preferences, explains how they differ from Group Policy settings, compares Preferences to logon scripts, and covers a few Group Policy Preferences gotchas.

The introduction of Group Policy Preferences into Group Policy seems to have quite a few people confused. I think that confusion has been compounded by all of the people who skipped Windows Vista, stayed with Windows XP, and are just now starting to implement Windows 7 on the desktop.

Group Policy Preferences

Source : 4sysops

Read More

Microsoft officials are finally sharing publicly details about “Protogon,” the new file system that the company is developing as part of Windows 8.

Officially named ReFS — for Resilient File System — the new file system will be made available via a staged “evolution,” according to a January 16 post on the “Building Windows 8″ blog.

Source : www.zdnet.com/blog/microsoft
Building Windows 8 Blog : Building the next generation file system for Windows: ReFS

Read More

Thanks to Microsoft, the ‘Add custom search provider’ button was remove from the IE Gallery site.

If your want to create a custom search provider for any site just go to http://www.enhanceie.com/ie/searchbuilder.asp

Read More

Microsoft unveiled a HTML5 version of Cut the Rope at CES 2012 today. Created with the help of ZeptoLab, the game includes 25 levels in total for Internet Explorer 9 users — seven of which are exclusive when the site is pinned. Gabby Hegerty, Internet Explorer lead in the UK, explained to us that the web app is part of Microsoft's IE9 beauty of the web promotion, something that helped launch the web browser in March 2011.

Microsoft previously demonstrated Cut the Rope on Windows 8, and Hegerty revealed there are discussions around a Windows Phone 7 app. Although the latest effort is HTML5, it doesn't work correctly on Windows Phone's browser, and there's no plans to fix that. Microsoft's Cut the Rope for IE9 follows a similar effort by Google, Chrome Angry Birds, and does let Safari, Firefox, and Chrome users play the game. However, If you want access to the special seven levels you'll have to use Internet Explorer 9 and pin the site to your taskbar.

Source : www.theverge.com
Play : www.cuttherope.ie

Read More

Volkswagen has equipped its most potent Golf GTI and R models and its entire Scirocco range with a new ESP system that allows the driver to fully disable electronic aids.

VW has responded to criticism from media and customers that said the models were not adjustable or sporting enough, were too sensible compared with rivals and did not allow the driver full control of the vehicle

What about the Jetta GLI ?

Source : www.autocar.co.uk

Read More

Are PC makers finally getting the message that their customers don’t want crapware? A close look at three consumer PCs delivers a mixed answer.

See the accompanying image gallery:
12 ways hardware makers screw up a perfectly good Windows PC

Source : The Ed Bott Report

Read More

It hasn’t been a good year for Firefox. Mozilla has lost share to Google, it’s lost the loyalty of enterprise customers, and it’s lost key talent. And a deal with Google that supplied 84% of its revenue last year was scheduled to end in November. Can Firefox avoid a slide into irrelevance?

Source : Th Ed Boot Report

Read More

The Jetta We've Been Waiting For

2012-vw-jetta-gli---03

The motoring press hasn't had the greatest of relationships with the 2012 Volkswagen Jetta. When the sedan debuted, critics slammed the newest generation as a Walmart interpretation of a model many of us had grown up loving. The nicer-than-expected materials, playful handling and quiet cabin had all been scrapped in favor of a bargain basement price tag wrapped in styling as risky as sunblock in summer. The machine simply felt like the latest casualty of the Volkswagen campaign to become the world's largest automaker. To make matters worse, buyers didn't seem to care.

Despite a tide of vitriolic ink that's risen around the 2012 Jetta, the model has seen an explosion of sales that's left plenty of critics tapping their microphones and asking, "Is this thing on?" If anything, the exercise has proven that when it comes to moving vehicles in the now fiercely-competitive compact segment, price is still king no matter what the critics say. So, when Volkswagen promised to satiate the model's longtime fans with a new GLI, the rank smell of skepticism came wafting through newsrooms across the country.

But with a stylish exterior, sporty indoor appointments and an upgraded suspension, the 2012 Volkswagen GLI seemingly makes up for the base model's deficiencies, at least on paper

Read the complete article : www.autoblog.com

Read More

Microsoft may have done an about-face and decided against offering the Desktop App and thus non-Metro-style apps, on Windows 8 ARM tablets.

Source : All about Microsoft Blog RSS | ZDNet

Read More

This is a project to port Android open source project to x86 platform, formerly known as "patch hosting for android x86 support".

Project Goal : To provide complete solution for Android on Eee PC platforms first and then to provide solutions for common x86 platforms as well.

Source : www.android-x86.org

Read More

Security Compliance Manager 2 (SCM 2) is a free tool from the Microsoft Solution Accelerator team that enables you to quickly configure and manage your desktops, traditional datacenter, and private cloud using Group Policy (GPO) and System Center Configuration Manager.

Links :

Read More

There are many new features of MDT 2012 but one that I particularly like is the ability to apply GPO Packs created using Security Configuration Manager (SCM) during the deployment process.

Source : The Deployment Guys

Read More

The aspnet.config file is a little known config file which is supported by ASP.NET 2.0 and greater

Source : Scott Forsyth's Blog

Read More

This is just precious. A new Samsung advertisement goes after the trendy hipster types that stand in line for hours to buy new Apple products, even though in this case--with the iPhone 4S--there are superior devices out there already. The ad nicely parodies the whole Apple Store line experience--you know, because they may not make enough of them, so you better get in line.

My favorite sequence is the hipster who dismissively says, "I could never get a Samsung. I'm creative." To which the guy next to him responds, even more dismissively, "Dude, you're a barista." LOL.

Classic because it's true.

Source : Paul Thurrott

Read More

I've often imagined a computing environment in which you could run mobile apps on a full desktop OS. For example, I figured it made sense for Apple to replace the widgets capabilities in Mac OS X with the ability to run iOS apps. Or, Microsoft could provide a way to run Windows Phone apps on Windows instead of gadgets. Well, someone has brought this dream to life: Via a utility, you can now run Android apps on Windows.
The utility, called BlueStacks, is available in an early, pre-beta release right now. And while I've only just started testing it on the Windows 8 Developer Preview slate PC, I was so surprised by how well it's working already that I wanted to get the word out. This thing appears to be the real deal. For example, I was able to easily and seamlessly use the Pulse mobile app, full-screen, on the PC with full touch support.

You gotta check this out. It looks very interesting.

Thanks to Sheldon D. for the tip.

Source : Paul Thurrott

Read More

A good 10 parts series of articles about MDT 2012 by Manoj Nair :

blogs.technet.com

Read More

Here’s the situation: You are called into consult for a client, and in examining their IT infrastructure you observe no organization as to how service accounts are deployed. For instance, some line-of-business (LOB) applications are using the domain Administrator as their service account identity, while others use the Local Service or Network Service identity.

Recently, the client began associating application services with dedicated domain user service accounts. However, because domain password policy forces password changes every 60 days, the manual reassignment of service account passwords created organizational headaches for the IT support staff.

How can you resolve this mess of a real-world situation?

Source : 4sysops.com

Read More

Released earlier this week, a new survey pegs the eminently mobile iPad as much more of a homebody than previously thought. After gathering usage data from 15,000 iPad owners across more than a dozen countries, research firm McKinsey & Company were surprised to find that 62 percent of those polled never take their iPads out of the house.

Source : appadvice.com

Read More

LogParserLizard

I’ve always been a little bit reluctant to use Microsoft Log Parser. I know it’s really powerfull, but it’s command line interface is not really fun to use.

Last week I decided to give it another try and I discovered Log Parser Lizard (better late than never). It’s a FREE GUI Tool to use the Log Parser API. It’s a must have !

Read More

In Microsoft Windows, we have Safe Mode. In SQL Server 2008, we have the Dedicated Administrator Connection, or DAC. We can use DAC to obtain emergency access to a SQL Server 2008 database instance in cases where the instance is blocked up, locked up, or just plain hosed.

Full article : 4sysops.com

Read More

Google+ launched its business pages a week ago. One of the highest profile sites is from Bank of America. Or is it? Judging by the biting satirical content, Google has been thoroughly punked.

Complete article : www.zdnet.com/blog/bott

Read More

Faster iPhones and Android devices have been taking market share from Research in Motion's once-addictive BlackBerry, but analysts and its executives are not ready to count the smartphone out yet.

Interesting article from the LA Times.

Source : www.latimes.com

Read More

Here’s my favorites shortcuts in Internet Explorer (IE) 9 :

Ctrl + W Close the current window (tab)
Ctrl + F Find on this page
Ctrl + I Open Favorites
Ctrl + E Open a search query in the address bar (with last query string)
Ctrl + click Open links in a new tab in the background
Ctrl + Shift + click Open links in a new tab in the foreground
Ctrl + P Print

Complete IE 9 keyboard shortcut list :
windows.microsoft.com/en-US/windows7/Internet-Explorer-9-keyboard-shortcuts

Read More

If you’re like most people, the terms “roomy and practical” don’t exactly call to mind performance-driven fun. The 2012 Volkswagen Jetta GLI might just change your mind.

Source : blogs.vw.com/jetta

Read More

there are serious integration problems between Apple Mac OS X 10.7 Lion and Active Directory Domain Services (AD DS). Specifically, we are seeing (a) sluggish binding between the Macs and AD; (b) super-slow domain logons; and (c) completely blocked domain logons.

Source : 4sysops.com

Read More

The original MDTDebugger that I wrote is a great help for debugging tasks running in a litetouch (LTI) deployment task sequence, but it doesn't work for zerotouch (ZTI) deployments. The reason for this is that it needs to be able to display a window on the desktop of the computer that is running the task sequence; something that Systems Center Configuration Manager actively prevents. Well, this is no longer a problem because now there is a version of the MDTDebugger for ZTI deployments! This tool works in the same way as the LTI version but with a key difference: you open the debugging window on a different computer. In order to achieve this, I split the tool into two parts, the first part is the launcher that runs from the task sequence, and the second is the GUI that you use to help with the debugging.

Source : blogs.technet.com/b/deploymentguys

Read More

Steve Jobs was a great CEO, but Bill Gates has moved beyond technology and is trying to save the world. Why isn't he getting more recognition?

Also forgotten has been a simple yet critical bit of history: Jobs, in his second and more successful period as Apple's CEO, stood on the shoulders of Bill Gates. Had Microsoft not made computing ubiquitous, there wouldn't be any reason to have an iPod, or an iPhone, or an iPod. In fact, they simply wouldn't exist.

Source : www.infoworld.com

Read More
Next PostNewer Posts Previous PostOlder Posts Home