Wednesday, October 10, 2012

Hướng dẫn rút tiền từ Fast Cash Mega

Mặc dù bài viết này có lẽ không cần thiết với những ai đã từng tham gia các chương trình đầu tư như JSS, Zeek ... Nhưng có lẽ sẽ có ích cho những người mới tham gia. Sau đây là hướng dẫn chi tiết cách rút tiền từ Fast Cash. 
        Sau khi đăng nhập phần thông tin tài khoản của mình hiện lên như sau:

 Chọn Withdraw
 Chọn loại tiền muốn rút. Nhập số tiền và  chọn Withdraw
  Tiền sẽ về LR sau vài giờ.

Tối thiểu thanh toán là 5$. 
Lời khuyên: Nên đầu tư bằng Payza và rút ra bằng LR. Tôi đầu tư 100% bằng PZ và rút về LR vừa đỡ mất phí rút tiền ( 0%) vừa bán được giá ( khoảng 21000đ/1$).
 Mọi vấn đề thắc mắc vui lòng pot tại đây để được giải đáp
 Chúc  các bạn thành công!
Tiện thể Up cái bằng chứng thanh toán cho anh em yên tâm đầu tư
 
Cập nhập thêm ngày 6/9/2012

Thursday, September 20, 2012

Planning deployment for Windows Server 2012 (Part 2)

Introduction

Windows Server 2012 includes a lot of new features and enhancements that will make migrating to this platform appealing to many organizations. Successful deployment starts with good planning, and it's never too early to begin planning changes in your IT environment. And that's what this series of articles is about.
Note:This article was written using the Beta release of Windows Server 2012 and will be updated later if any changes are needed when the product reaches RTM.

Understanding Features on Demand

In the previous version Windows Server 2008 R2 you could choose between two different installation options: Full or Server Core. The Server Core installation option had a somewhat smaller footprint than the Full installation because it lacked a GUI and supported only a limited number of server roles and features. And once installed, a Server Core installation could not be converted to a Full one or vice versa, so you had to make your decision before deploying your servers. But as described in the first article of this series, beginning with Windows Server 2012 you can also switch between GUI (the new name for Full) and Server Core installations after deploying your servers by using the Uninstall-WindowsFeature PowerShell cmdlet. And now there's a third installation option called Minimal Server Interface which is only available post-deployment using PowerShell.
A key benefit of the Server Core installation option in Windows Server 2008 R2 is that fewer installable server roles and features means fewer binaries on the server, which means less patch management (fewer applicable software updates). The same benefit applies to Windows Server 2012, but there's a difference because with Windows Server 2012 you can now remove the binaries of any server roles and features that you don't need to install on your server. For example, let's say you want to deploy a dedicated DHCP server in your environment. Since the Server Core installation option supports this role, you deploy Windows Server 2012 using the Server Core option and you add the DHCP Server role to your installation together with any additional features needed on the server. Now, since you don't ever plan on installing the DNS Server role on this server, you can completely remove the binaries for that role from the server. The same goes for the Active Directory Domain Services role, the Print And Document Services role, and so on.
What's the advantage of removing unneeded binaries like this? Basically there are three benefits:
  1. Improved security - Fewer binaries means less attack surface.
  2. Simplified maintenance - Even if a role or feature isn't installed, if the binaries for that role or feature are present and a software update is released that applies to those binaries, the update will need to be applied. So by removing unneeded binaries you can reduce the number of patches that your server will need over its lifetime.
  3. Smaller footprint - The binaries of unneeded roles and features take up space on your server's system drive, so removing them helps reduce the footprint of your server. This can be especially helpful when you are deploying server workloads in a virtual machine environment as it can enable you to consolidate more workloads per virtualization host.
This new capability in Windows Server 2012 to completely remove the binaries of installable roles and features is known as Features on Demand. Let's take a look now at this capability in action.

Walkthrough of using Features on Demand

The binaries for installing Windows roles and features are located in the side-by-side component store which is the C:\Windows\WinSxS folder on a computer running Windows Vista, Windows Server 2008 or later. For a good explanation of what the WinSxS folder is all about, see this post on the Ask The Core Team blog on TechNet.
Figure 1 shows the contents of the WinSxS folder on a Windows Server 2012 installation on my test network. Note that it says in the bottom left corner of the Explorer window that there are currently 12,467 items (files or folders) presently in this folder:

Figure 1: The WinSxS folder on this server currently has 12,467 items in it.
Let's install the Windows Server Backup feature on this server by launching the Add Roles And Features Wizard from Server Manager:

Figure 2: Installing the Windows Server Backup feature
Now let's switch over to Windows PowerShell for the rest of this article. Understanding PowerShell is key for being able to effectively manage servers running Windows Server 2012. That's because Windows Server 2012 is Microsoft's next-generation platform for cloud computing, and managing private clouds requires automation which is where PowerShell excels. For a list of all PowerShell cmdlets supported on Windows Server 2012, see this link.
We'll begin by using the Get-WindowsFeature cmdlet to determine whether we've successfully installed the Windows Server Backup feature on the server. As you can see from the next screenshot, the Install State for this feature is Installed:

Figure 3: The Install State of the Windows Server Backup feature is Installed.
Now let's use the Uninstall-WindowsFeature cmdlet to uninstall the Windows Server Backup feature from the server:

Figure 4: Uninstalling the Windows Server Backup feature.
Once we've rebooted the system and logged on again, running the Get-WindowsFeature cmdlet shows that the Install State for the Windows Server Backup feature has changed from Installed to Available:

Figure 5: The Install State of the Windows Server Backup feature is Available.
The Available state means that the binaries are available in case you want to install the feature. But let's say that we don't plan on installing the Windows Server Backup feature on this server, for example because we're using a third-party backup solution. In that case, we can run the Uninstall-WindowsFeature cmdlet again, this time with the -Remove parameter included, which will completely remove the binaries for this feature from the component store on the server:

Figure 6: Removing the binaries for the Windows Server Backup feature.
Now when we run the Get-WindowsFeature cmdlet we see that the Install State for the Windows Server Backup feature is displayed as Removed:

Figure 7: The Install State of the Windows Server Backup feature is Removed.
Let's switch back to Explorer and look at the WinSxS folder again. Note that there are now only 12,454 items in this folder, which means that 13 items have been deleted from the folder. These 13 items are the binaries for the Windows Server Backup feature, which we've decided will no longer be needed on this server:

Figure 8: The WinSxS folder on this server now has only 12,454 items in it
To find out what binaries were removed, you can do the following:
Before removing the binaries for the Windows Server Backup feature, open a command prompt and type dir /b C:\Windows\WinSxS> before.txt to save a list of the files in the component store.
After removing the binaries for the Windows Server Backup feature, open a command prompt and type dir /b C:\Windows\WinSxS> after.txt to save a list of the files in the component store.
Then use the fc command to compare the before and after directory listings for the WinSxS folder as shown here:

Figure 9: Using the fc command to compare the contents of the WinSxS folder before and after removing the binaries for the Windows Server Backup feature.
A rather more elegant way to compare these two directory listings is to use the Compare-Object PowerShell cmdlet as shown here:

Figure 10: Using the Compare-Object cmdlet to compare the contents of the WinSxS folder before and after removing the binaries for the Windows Server Backup feature.
That one example should be enough to motivate you to want to learn PowerShell if you haven't begun doing so already!
Now let's see what happens when we try to use the Install-WindowsFeature cmdlet to reinstall the Windows Server Backup feature on our server after having removed the binaries for this feature. But first, before doing this, be sure to disconnect the server from the Internet for reasons I'll explain in a moment:

Figure 11: The binaries for installing the Windows Server Backup feature are not available.
As you can see from the above screenshot, if the binaries for a role or feature have been removed from the server AND the server is disconnected from the Internet, then any attempt to install that role or feature will fail. Why did I insist that we disconnect the server from the Internet? Because installing the role or feature will SUCCEED if Internet connectivity is available, even if the binaries for that role or feature are not locally present on the server's component store. That's because the Install-WindowsFeature cmdlet will download the missing binaries from Windows Update. Microsoft says you can configure your server so that it won't try to download missing binaries from Windows Update, which of course would be a good idea as far as security goes, but as of the time of writing this article this functionality has not yet been documented (I'll update the article when this information becomes available).
Let's say for a moment however that your server has already been configured to not download missing binaries when the Install-WindowsFeature cmdlet is run. What if you decide later on that you actually did want to install the Windows Server Backup feature after you've already removed the feature's binaries from the server's component store? In that case you need to use the -Source parameter with your Install-WindowsFeature cmdlet to specify a Windows image file or existing Windows installation where the needed binaries are available.
For example, I could copy the Install.wim install image from the \Sources folder of my Windows Server 2012 product media to a folder on my server's system drive. Then I can have the -Source parameter point to this WIM file when I run the Install-WindowsFeature cmdlet to re-install the Windows Server Backup feature:

Figure 12: Using the -Source parameter of the Install-WindowsFeature cmdlet to point to a local WIM file.
Alternatively, I could share out the WinSxS folder on a different server running Windows Server 2012 and then have the -Source parameter point to the UNC path to the shared folder:

Figure 13: Using the -Source parameter of the Install-WindowsFeature cmdlet to point to the shared WinSxS folder on a different server.
There are other cool things you can do with Features on Demand, and we'll examine these in a future article in this series.
If you would like to be notified when Mitch Tulloch releases the next part of this article series please sign up to the WindowsNetworking.com Real time article update newsletter.

Planning deployment for Windows Server 2012 (Part 1)

Introduction

Windows Server 2012 includes a lot of new features and enhancements that will make migrating to this platform appealing to many organizations. Successful deployment starts with good planning, and it's never too early to begin planning changes in your IT environment. So let's get started!
Note:This article was written using the Beta release of Windows Server 2012 and will be updated later if any changes are needed when the product reaches RTM.

Understanding installation options

Installation options were first included in Windows Server 2008, which included the Windows Server Core installation option in addition to the traditional or Full installation option. While the Full installation option included everything you expected in a Windows installation, Server Core included only those services and features needed to support common infrastructure roles such as domain controllers, DNS servers, DHCP servers and other common roles to reduce footprint, attack service, and servicing overhead. Most of the GUI was also removed from Server Core, which meant no desktop, no taskbar or Start menu, no MMC consoles, and so on. The primary UI in Server Core installations is the Windows command prompt, which meant you needed to use the command-line (or better, scripts) to configure Server Core machines.
In Windows Server 2008 and Windows Server 2008 R2, you had to select which installation option you wanted (Server Core or Full) when you installed your server. If you installed a server as a Server Core installation, you couldn't change it to Full without reinstalling and vice versa. This now changes in Windows Server 2012, which allows you to convert a Server Core installation to a Server with a GUI (the new name for Full) installation or vice versa.

Benefits of converting installation options

Being able to convert between GUI and Server Core installations after deployment has significant benefits. For example, let's say you want to deploy Server Core in a virtualized environment like a private cloud because its reduced footprint will enable higher levels of workload consolidation on your virtualization hosts. But you're a bit scared of having to use commands and scripts to configure your Server Core virtual machines after you deploy them to your private cloud.
With the ability in Windows Server 2012 to convert between installation options after deployment, you can sidestep this issue by simply deploying your VMs with the GUI installation option instead. Then post-deployment you can configure your new servers using familiar GUI tools like MMC snap-ins. Once your servers have been configured properly, you can then convert them to Server Core installations so you can pack more VMs onto your Hyper-V hosts to save money.

Converting from Server with a GUI to Server Core

We'll begin with a Server with a GUI installation of Windows Server 2012 as shown in Figure 1:

Figure 1: Step 1 of converting from Server with a GUI to Server Core.
Click the icon on the taskbar to open the Windows PowerShell console and run the following PowerShell command to remove the GUI management tools and desktop shell from the server and convert it into a Server Core installation:
Uninstall-WindowsFeature Server-Gui-Mgmt-Infra -restart

Figure 2: Step 2 of converting from Server with a GUI to Server Core.
The PowerShell console first collects data concerning the server's configuration and then begins removal of the GUI management tools and desktop shell:

Figure 3: Step 3 of converting from Server with a GUI to Server Core.
Once these components have been successfully removed, the server restarts and you're presented with the logon screen:

Figure 4: Step 4 of converting from Server with a GUI to Server Core.
Pressing CTRL+ALT+DEL lets you enter your credentials for the server:

Figure 5: Step 5 of converting from Server with a GUI to Server Core.
Note in the screenshot above that there is no avatar image for the user, which indicates right away that you're logging on to a Server Core installation. Once your credentials have been authenticated, the stripped-down Server Core UI is displayed as expected:

Figure 6: Step 6 of converting from Server with a GUI to Server Core.
That's it!

Converting from Server Core to Server with a GUI

Now let's convert our new Server Core installation back into a Server with a GUI. Begin by typing powershell into the Server Core command prompt to launch the Windows PowerShell console:

Figure 7: Step 1 of converting from Server Core to Server with a GUI.
Run the following PowerShell command to add back the GUI management tools and desktop shell to the server and convert it back into a Server with a GUI:
Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –Restart

Figure 8: Step 2 of converting from Server Core to Server with a GUI.
Once again, the PowerShell command starts by collecting data concerning the server, then it begins installing the components needed to convert the server back into a Server with a GUI:

Figure 9: Step 3 of converting from Server Core to Server with a GUI.
The server then restarts and you're presented once again with the logon screen:

Figure 10: Step 4 of converting from Server Core to Server with a GUI.
This time when you press CTRL+ALT+DEL you'll see an avatar icon when you enter your credentials:

Figure 11: Step 5 of converting from Server Core to Server with a GUI.
Once you've logged on to your server, you can verify that it's once again a Server with a GUI:

Figure 12: Step 6 of converting from Server Core to Server with a GUI.

Additional details

The above steps only work if you initially deployed your server using the Server with a GUI option. If you initially installed it as a Server Core machine, you'll need to go through a few extra steps to convert it into a Server with a GUI. These steps are outlined in the section titled "To use Windows PowerShell to convert from a Server Core installation to a Server with a GUI installation" on this page of the TechNet Library.
While Windows Server 2012 only includes two installation options, there is a third option called Minimal Server Interface that you can configure post-deployment. The Minimal Server Interface is similar to Server with a GUI but is missing certain UI features:
  • The desktop and Start screen
  • Windows Explorer
  • Internet Explorer
However, the Minimal Server Interface does still include the following UI features to allow you to easily manage your server:
  • The new Server Manager
  • MMC consoles and snap-ins
  • Some Control Panel applets
To configure a server to use the Minimal Server Interface option, you can use the same Install-WindowsFeature and Uninstall-WindowsFeature shown above but specifying only the Server-Gui-Mgmt-Infra parameter.
If you already have a Server with a GUI installation, then besides using the PowerShell commands shown above you can also use the new Server Manager to remove the GUI management tools and/or desktop shell to convert your server to either a Server Core installation or a Minimal Server Interface server. To do this, launch the Remove Roles wizard from Server Manager and clear one or both of the checkboxes shown under the User Interfaces and Infrastructure feature as shown in Figure 13:

Figure 13: Removing the GUI management tools and/or desktop shell using the Remove Roles wizard.
Since both the new Server Manager and PowerShell 3.0 can be used to manage servers remotely, these tasks can also be performed on remote servers in your datacenter from your admin workstation.

 

Monday, September 17, 2012

Cấu hình Active Directory (AD DS) trong Windows Server 2012

Windows Server 2012 introduces a plethora of new features with a key emphasis on Cloud integration being the buzz word in the industry over the last 24 months.  Windows continues to grow and mature as an operating system with the latest iteration being more secure, reliable and robust and more importantly making it easily interoperable with other systems.
This post will focus on Installing a Windows 2012 Server and then promoting it as the first domain controller in a new Forest.  Even though the logical steps haven’t really changed dramatically since the introduction of Windows 2008, the interface has! especially with the new metro look.  So let’s begin our journey with Windows Server 2012 as this will be the first of many articles on configuring different components that Windows Server 2012 has to offer.
Installing Windows Server 2012
The first step is to boot up from the CD or ISO image and select your language settings.
image thumb Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Select your Language and input options and then click on Next.
image thumb1 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Install Now
Select the operating system you want to install.  I have selected Windows Server 2012 Release Candidate Server with a GUI.  The other option is server core which was first introduced in Windows 2008 and is a minimal install with no GUI but provides remote management through Windows PowerShell and other tools.
image thumb2 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
Accept the License terms
image thumb3 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
image thumb4 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
We are performing a new installation of Windows Server, so click on Custom.
image thumb5 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Partition your drives and then click Next.
The Installation of Windows then proceeds.
image thumb6 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
The installation will eventually re-start your Windows Server where it will go through the final stages of preparing the environment for first time use.
image thumb7 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
You will eventually be prompted to enter a password for the built-in Administrator account.
image thumb8 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Finish
You will now be presented with the new Windows Login Screen, which is a fair change to what we have been accustomed to with previous releases of Windows Server.
image thumb9 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Hit Ctrl – ALT – Delete to sign in, and enter your password.
You will be presented with the new Server Manager Screen which really simplifies the administration and configuration of your new server.  Our main goal for this article is to configure Active Directory and its related services such as DNS.
image thumb10 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
First thing I want to do is change the computer name.  Windows goes ahead and provides a default unique name in the form of WIN-<random characters>
To do so, from the Server Manager > Dashboard screen, click on Local Server and then click on the computer name hyperlink.
image thumb11 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
This will take you to the all familiar System Properties
image thumb12 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Change, enter a more desirable Computer Name and then click OK.
You will then be prompted to restart your computer to apply the changes.  Click Ok and then Click on restart now.
After your computer has restarted, we will be presented with the Server Manager Screen.  Now we are ready to configure this server as an Active Directory Controller.
Adding the Active Directory Domain Services Role
From the Dashboard click on “Add roles and features”.  You will be presented with the “Before you begin screen.  Click Next.  In the “Installation Type” screen click on “Role-base or feature-based installation”.
image thumb13 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
You will be presented with the following screen asking you to select a destination server.  This is a new feature of Windows 2012 where you have the ability to deploy roles and features to remote servers and even offline virtual hard disks.
In our case, we are selecting the current server from the server pool.
image thumb14 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
We are now back in familiar territory (if you have worked with Windows 2008 Server) and we will select the “Active Directory Domain Services” and DNS Server if it hasn’t already been provisioned.
image thumb15 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
You will then be prompted to add features that are required for Active Directory Domain Services.
image thumb16 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click on Add Features
Click Next
If you want to add additional features, you can do so from the next screen, otherwise click Next
image thumb17 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
You will now be presented with the Active Directory Domain Services (AD DS) screen outlining some information about AD DS and its requirements.  You will notice that DNS is a MUST and has always been the case.
image thumb18 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click next
You now provided with a summary of installation selections
image thumb19 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
The installation will now begin
image thumb20 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Upon completion you will be presented with an installation succeeded message.

image thumb21 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Close.
Back in Server Manager, you will notice that AD DS has been added to the left navigation tree.  Click on it and then click on More on the right navigation pane where it states that Configuration is required for Active Directory Domain Services.
image thumb22 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
You will now be presented with the All Servers Task Details, in which you will click on Promote this server to a domain controller under Action.
The Deployment Configuration screen appears and we will select “Add a new forest” as this is the first domain controller.

image thumb23 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Enter your Root domain name and then click Next.
The following screen will then appear in which you will enter and select your Domain Controller Options.
image thumb24 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
You will then get the below warning in which you can ignore for now.
image thumb25 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
The NetBIOS domain name will then be inputted automatically.  In the event of a conflict, it will suggest an alternative by appending the original name with a 0.
image thumb26 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
Confirm or change the locations of your database folder, log folder and SYSVOL folder.
image thumb27 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Next
Review your selections and then Click Next.
If all of the prerequisites checks have passed successfully, you will be able to click on Install to proceed.
image thumb28 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click Install
The installation will now proceed and you will see the progress being displayed.
image thumb29 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
The computer will most likely restart on its own to complete the installation so don’t be alarmed if it does.  You will receive a brief warning advising so.
Upon restart, you should be able to login using your domain credentials for the user administrator.
So let’s add our first user!  We can do so via the new Active Directory Administrative Center or via the well known Active Directory Users and Computers.  For something different, lets try the former.
Once Server Manager has launched, click on Tools > Active Directory Administrative Center
You will be greeted with the below Welcome screen.
image thumb30 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click on your domain on the left navigation pane, in my instance it is corp (local).
image thumb31 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Let’s begin by creating our first Organizational Unit that will house our corporate users (I am not a fan of using the default Users).  On the right navigation pane under Taks > <domain name> click on New and then select “Organizational Unit”.
Enter the mandatory details.
image thumb32 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Click OK
This will immediately create the Organizational Unit in the designated location.  Double click on your newly created Organizational Unit and on the left navigation pane, select New User.  The below screen appears in which you will fill in the necessary details.
image thumb33 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
Make sure you scroll down to the bottom and fill in all the necessary sections such as Groups, Profile Settings and Organization settings.
Once completed, Click OK.
Your newly created user will now be listed in the middle navigation pane.
image thumb34 Configuring Active Directory (AD DS) in Windows Server 2012 windows 2012 windows
As you can see it is relatively straight forward configuring your first domain controller in a new forest using Windows Server 2012, in particular if you have had experience with Windows Server 2008.
The team at GKM2 Solutions are proficient and certified with all version of Windows Server dating back to 2000 and 2012 will be no different.  If you require any assistance with your Windows Server migration needs or Active Directory in General, don’t hesitate to contact us via our website form or call us on 1300 797 288.  We will be more than glad to help with your IT requirements.