Auto Add

Tuesday, 14 October 2014

Windows 10

The Windows 10 Technical Preview will be released  on October 1 .  find out about Windows 10′s new features and changes from Windows 8.

Start menu: The familiar Start menu is back, but it brings with it a new customizable space for your favorite apps and Live Tiles.
Everything runs in a window: Apps from the Windows Store now open in the same format that desktop apps do and can be resized and moved around, and have title bars at the top allowing for maximize, minimize, and close with a click
Snap enhancements: You can now have four apps snapped on the same screen with a new quadrant layout. Windows will also show other apps and programs running for additional snapping and even make smart suggestions on filling available screen space with other open apps.
New task view button: There’s a new task-view button on the taskbar for quick switching between open files and quick access to any desktops you create.
Multiple desktops: Create desktops for different purposes and projects and switch between these desktops easily and pick up where you left off on each desktop.
Find files faster: File Explorer now displays your recent files and frequently visited folders making for finding files you’ve worked on is easier.
 Metro apps on the Desktop. Rather than forcing you into the full-screen Metro interface, Windows 10 will let you run Metro apps on the Desktop in a window. In theory this will mean that mouse-and-keyboard users might now actually use Metro apps, which in turn might kickstart the arrival of some better apps in the Windows Store. Or not.
Desktop interface overhaul. It’s not entirely clear yet, but it seems the Windows 10 Desktop will receive a graphical overhaul, to make it even flatter. The leaked Windows 10 Technical Preview shows some flatter icons and thinner window borders — and I suspect we’ll see some further UI changes in later preview builds. (If you recall, the first Windows 8 Developer Preview still looked a lot like Windows 7, and became more flat and less opaque as the development process went on.) Curiously, there does appear to be a drop shadow behind the Explorer window in the Windows 10 screenshot above — Windows 8 got rid of a lot of shadows, so it would be interesting if they made a return.





















Thanks & Regards
  Srikanth Goud  - Virtualization Administrator

 

Install IIS 7 and Setup a Static Website

Microsoft have created a version of IIS that will compete against Apache for functionality and performance. IIS 7 is a giant step forward for the IIS platform with the following enhancements:

Modular Design – In the past it was an all or nothing install for IIS, but not so anymore. With the ability to only load the modules that you need for server operation you increase both performance and security
New Management Interface – IIS 7 has a completely new interface that allows you to quickly and easily change the settings you need to for each site. Also in this version is the ability to edit all the website settings in a text based configuration file
Share tasks with site owners – If you are hosting multiple sites you can delegate administrative control to developers or content owners

In this article we will explore installing and enabling the basic features of IIS 7 and placing a static website into service. For this article, I will assume that you have installed Server 2008 and know how to launch Server Manager.

Installing IIS 7 on Windows Server 2008

Since the IIS web server is not installed by default, the first thing we have to do is install IIS as a role for the server we are working on.
1. Click on Start -> Administrative Tools -> Server Manager
 
 
 
 
 
 
 
2. In Server Manager scroll down to Roles Summary, and click on Add Roles

 3. The Add Roles Wizard starts at this point and warns you that if you are going to add a role to make sure:
  • The administrator account has a strong password
  • Network settings, such as static IP, are configured
  • The latest security updates from Windows Updates are installed


 


 

 6. The next window is the Select Role Services. This very important screen will allow you to add only the modules necessary for your planned installation of IIS.
When you choose a module in this screen in the upper right corner you will get more information about what the module is for. For our example we are going to load the following modules:
Static Content – Lets the Web server publish static Web file formats, such as HTML pages and image files. Use Static Content to publish files on your Web server that users can view using a Web browser.
Default Document – Lets you configure a default file for the Web server to return when users do not specify a file in a URL. Default Documents make it easier and more convenient for users to reach your Web site.
HTTP Errors – Allows you to customize the error messages returned to users’ browsers when the Web server detects a fault condition. Use HTTP Errors to provide users with a better user experience when they run up against an error message. Consider providing users with an e-mail address for staff who can help them resolve the error.
HTTP Redirection – Provides support to redirect user requests to a specific destination. Use HTTP redirection whenever you want customers who are using one URL to actually end up at another URL. This is helpful in many situations, from simply renaming your Web site, to overcoming a domain name that is difficult to spell, or forcing clients to use a secure channel.
HTTP Logging – Provides logging of Web site activity for this server. When a loggable event, usually an HTTP transaction, occurs, IIS calls the selected logging module, which then writes to one of the logs stored in the files system of the Web server. These logs are in addition to those provided by the operating system.
Request Filtering – Screens all incoming requests to the server and filters these requests based on rules set by the administrator. Many malicious attacks share common characteristics, like extremely long requests, or requests for an unusual action. By filtering requests, you can attempt to mitigate the impact of these types of attacks.
IIS Management Console – Provides infrastructure to manage IIS 7 by using a user interfaceYou can use the IIS management console to manage a local or remote Web server that runs IIS 7. To manage SMTP or FTP, you must install and use the IIS 6 Management Console.
 
 
 
 
 
 
 
7. Click Next to get to the Confirm Installation Selections screen to verify your chosen settings.

 
 
 
 
 
 
 
8. Click Install and installation will start
 
 
 
 
 
 
 
9. After installation you should see the Installation Results page. Click Closeto finish the
 

10. In the Server Manager window, under Roles Summary, you should now see Web Server (IIS)

 
 
 
 
 
 
 
 
11. Let’s go ahead and open IIS Manager by going to Start -> Administrative Tools -> Internet Information Services (IIS) Manager

















12. Once IIS Manager opens, expand out the web server and then expand theSites folder. Right click on sites and then click on Add Web Site
















13. In the Add Web Site window we have some basic information to fill out for a static site:
  • Site Name – Name of the site, this will be either domain.com or *.domain.com (Where * would represent a sub domain name such as www or blog for example)
  • Physical Path – The location on the local server that will hold the files for the website. If you did not set this up beforehand you can create a folder through this interface
  • Type – choose either http or https depending on whether your site will use Secure Socket Layer (SSL) certificate or not
  • IP Address – From the dropdown you can specify what IP the website should answer on or use the default switch of All Unassigned
  • Host Name – If you would like this site to respond to other domain names you can put these here
















You have now installed IIS 7 and configured a static website. Just place your html files in the directory you specified when creating the site and you are good to go.


















Thanks & Regards
  Srikanth Goud  - Virtualization Administrator




Microsoft Intune, a Compliance Policy

  In Microsoft Intune, a Compliance Policy is a set of rules and settings that a device must meet to be considered "healthy" and ...