Archive

Archive for the ‘Windows Server’ Category

Microsoft Unveils Next Version of Visual Studio and .NET Framework

June 14th, 2009 muhazir No comments

Reveals extensive enhancements for simplified application life-cycle management, provides sneak peek at all key focus areas for Visual Studio 2010 and the .NET Framework 4.0.

Visual Studio 2010 Web site

REDMOND, Wash. — Sept. 29, 2008 — Microsoft Corp. today provided the first look at the next version of its developer tools and platform, which will be named Visual Studio 2010 and the .NET Framework 4.0. Microsoft described the next release through the following five focus areas: riding the next-generation platform wave, inspiring developer delight, powering breakthrough departmental applications, enabling emerging trends such as cloud computing, and democratizing application life-cycle management (ALM).

Today’s announcement included an in-depth look at how Visual Studio Team System (VSTS) 2010 (code-named “Rosario”) will help democratize ALM with a unique solution that brings all the members of a development organization into the application development life cycle, and removes many of the existing barriers to integration. Additional details on the other focus areas will be disclosed over the product development cycle. Read more…

TUTORIAL DASAR PEMROGRAMAN JAVA BERBASIS GUI MENGGUNAKAN NETBEANS

June 3rd, 2008 muhazir 59 comments

BENAR-BENAR UNTUK PEMULA

1. INSTALASI NETBEANS
Untuk menginstall Netbeans Anda harus punya DVD nya yang bisa didapat dengan Cuma-Cuma dari NetBeans.org (tergantung keberuntungan) tinggal dipesan aja via Internet lalu Anda akan menerima DVDnya langsung ke tangan Anda dalam sekejab (nunggu beberapa hari/gak sampe berminggu-minggu), lebih gampang 1agi Anda silahkan unduh dari netbeans.org hanya beberapa menit kalau kamu punya bandwith Internet Connection yang tinggi. Setelah Anda punya package nya silahkan install aja sendiri, boleh juga ditemani pacar, teman, saudara, oppung, nenek, atho’ dan lain-lain….hehe…:))

baca selengkapnya……….click di Read more…

Categories: Java, Tutorial, Windows Server Tags:

Windows 2003 Server Command line tools

April 9th, 2008 muhazir 1 comment

[ad#ad-4]
The day-to-day routine maintenance in a Windows Server 2003 based network, can be made much easier by knowing which command line tools are available for you. Here is a list of which commands I find particularly helpful. Base OS Tools: These useful command line tools come with the base Windows 2003 server install:

  • DSadd: Quickly objects to AD, can be used to create User accounts, OUs, Computer accounts, Groups and Contacts
  • DSmod: Modify existing AD objects
  • DSrm: Delete AD objects
  • DSmove: Move an object from its current location to a new location
  • DSQuery: Query AD according to specified criteria
  • DCgpofix: Restore default domain policy and default domain controllers policy.
  • Read more…

Categories: Tutorial, Windows Server Tags:

Create User with VB Script

April 9th, 2008 muhazir No comments

[ad#ad-4]
This is a sample working code to create users in bulk by reading a text file
containing list of users (each line of text file contain name of a user):

It requires text file as command line argument.
‘———-
strComputer = “.” ‘local computer
set objArgs = wscript.arguments

if objArgs.count <> 1 then
wscript.echo “Usage: ” & wscript.scriptFullName & ”
<text_file_containing_user_names>”
wscript.quit
end if
strServerListFile=objArgs(0)
set fs = CreateObject(“Scripting.FileSystemObject”)
if NOT fs.fileExists(strServerListFile) then
wscript.echo “Text file containing User list not found.”
wscript.quit Read more…

Categories: Windows Server Tags: