Describe the structure of Windows 2000?
Windows 2000 is a line of operating systems produced by Microsoft for use on business desktops, notebook computers, and servers. Released on February 17, 2000,[3] it was the successor to Windows NT 4.0, and is the final release of Microsoft Windows to display the "Windows NT" designation. It was succeeded by Windows XP for desktop systems in October 2001 and Windows Server 2003 for servers in April 2003.[4]
Four editions of Windows 2000 were released: Professional, Server, Advanced Server, and Datacenter Server.[5] Additionally, Microsoft sold Windows 2000 Advanced Server Limited Edition and Windows 2000 Datacenter Server Limited Edition, which were released in 2001 and run on 64-bit Intel Itanium microprocessors.[6] While each edition of Windows 2000 was targeted to a different market, they share a core set of features, including many system utilities such as the Microsoft Management Console and standard system administration applications. Support for people with disabilities has been improved over Windows NT 4.0 with a number of new assistive technologies,[7] and Microsoft increased support for different languages[8] and locale information.[9] All versions of the operating system support the Windows NT filesystem, NTFS 3.0,[10] the Encrypting File System, as well as basic and dynamic disk storage.[11] The Windows 2000 Server family has additional features,[12] including the ability to provide Active Directory services (a hierarchical framework of resources), Distributed File System (a file system that supports sharing of files) and fault-redundant storage volumes. Windows 2000 can be installed through either a manual or unattended installation.[13] Unattended installations rely on the use of answer files to fill in installation information, and can be performed through a bootable CD using Microsoft Systems Management Server, by the System Preparation Tool.[14]
Microsoft marketed Windows 2000 as the most secure Windows version ever,[15] but it became the target of a number of high-profile virus attacks such as Code Red and Nimda.[16] Over nine years after its release, it continues to receive patches for security vulnerabilities nearly every month.
Command used to go from User Mode to Privileged Mode is?
For Unix/Linux, use either the 'sudo' command or 'su' to the root account.
The Windows 2000 Active Directory is stored in what three files?
The Active Directory ESE database, NTDS.DIT, consists of the following tables: * Schema table
the types of objects that can be created in the Active Directory, relationships between them, and the optional and mandatory attributes on each type of object. This table is fairly static and much smaller than the data table. * Link table
contains linked attributes, which contain values referring to other objects in the Active Directory. Take the MemberOf attribute on a user object. That attribute contains values that reference groups to which the user belongs. This is also far smaller than the data table. * Data table
users, groups, application-specific data, and any other data stored in the Active Directory. The data table can be thought of as having rows where each row represents an instance of an object such as a user, and columns where each column represents an attribute in the schema such as GivenName.
Recommended size hard drive for a Windows 2000?
A 2 GB hard drive with 650 MB of free space is the recommended minimum. Of course, that's probably not enough for more than very basic tasks, so a larger one is probably required, depending on your needs.
Norton is the leader in security software for your computer with more PC Magazine Editor's choice awards than any other security company. Start a free trial and protect your PC today!
cutt.ly/Vjr9DDL
Do you wish to enable large disk support (Y/N)? If you respond Y then Fdisk assigns the FAT32 file system to the drive. Otherwise, it uses FAT16.
Download .NET Framework 3.5 from Microsoft's official website.
No. Windows update doesn't update drivers automatically in any circumstance. When installing a device, you can instruct the OS to go online and find the driver, but it's a manual process, not an automatic one.
Haven't confirmed this myself, but, according to Microsoft Official Academic Course, Windows 7 Configuration, Pg 139, "If Windows 7 is configured to use automatic updating, the system will download device drivers only for hardware that does not have a driver installed."
Is it possible to install Windows 2000 on a 64-bit CPU?
Yes, if installed on an AMD64 / EM64T compatible processor, Windows 2000 will not be able to take advantage of the additional addressing capabilities, however. There is also a 64-bit version of Windows 2000 available only for Itanium chips.
Which folders can you access in recovery console?
those files in case deleted that one we can recovery.......
yes
== == You might be able to get Windows to boot into Safe Mode. As soon as you press the power button, begin pressing the F5 key, over and over again, until the computer begins to beep. (If it does. Some won't.) This should bypass the files that Windows normally boots from, and boot Windows into Safe Mode. If you are successful, look at the contents of 'C' drive to find out if any files have been added, or changed. You may need an experienced Windows technician to help you.
Will World of Warcraft run on windows XP professional?
Yes World of Warcraft will run on all computers Windows 7, Windows xp, Windows Vista
What is the difference between the process and processor?
process is verb, is ection to produce result, and on the other hand processer is who processer.
What is docking in operating system administration with windows 2000?
This is a sophisticated feature for managing the key informational windows. They can be docked to any side of the main window or detached and made to float. If windows are docked, they can also be made to automatically hide themselves when not in use. The window will now automatically hide itself when it is not being used
I have a four channel CCTV video recorder. Its called a "4CH DVR" I believe they are available from Maplin. When the recordings are downloaded they have the extension .VSE these can be converted to .AVI files by the "Video Server E" software that comes supplied with the recorder. The software is quite poor in my opinion as its not very flexable. Apparently the .VSE format cant be modified so it can be submitted as evidence in court. Ian-AT-IanRussell.co.uk
Which file system does Windows 2000 support for the CD-ROM File System?
CDFS CD Rom File System is relatively simple format defined as the read only formatting standards for cdrom media.
How do you get AVG Resident Shield Alert window from popping up every time we log on?
Open AVG user interface...go to "tools"...go to "advanced settings"...uncheck "Display Resident Shield related tray notifications (automatic action)....reboot computer...should work...worked for me =) good luck
Question not clear as fixed cost is missing or one or two figures missing
It's actually 3 stages: preprocessing, compilation and linking.
Preprocessing deals with all the preprocessor directives (all lines beginning with #). So a line such as #include<stdio.h> will effectively copy/paste the contents of the stdio.h header in place of the directive. The header itself may also contain preprocessor directives and these must be processed prior to insertion. Macros are also processed at this stage and all comments are stripped out. The end result is a translation unit that contains pure C code with absolutely no macros, no directives and no comments whatsoever. The translation unit is usually stored in working memory, however your IDE may include a switch that allows you to examine the contents of the translation unit.
The compiler processes each translation unit in isolation. Since the compiler cannot see any other translation units, only names with internal linkage can be resolved at compile time. The compiler produces an object file from the translation unit. The object file contains machine code along with a table of any names that couldn't be resolved by the compiler (those with external linkage).
Once all translation units have been compiled, the linker can examine the object files and resolve the outstanding external linkage problems, essentially linking all the object files into a single executable.
Problems can occur at any stage. For instance, preprocessing could result in a macro expansion that generates code that cannot be compiled. The compiler cannot resolve these problems because the compiler never saw the macro, it only saw the code that was generated by the preprocessor. So although it can identify the problem in the translation unit, it cannot identify where that problem originated. This is why macros are so difficult to debug: the compiler cannot help you.
Aside from macro problems, the compiler can identify and help you resolve a wide range of problems in your code thus it pays to make use of it as much as possible. The compiler can also statically assert your assumptions, perform compile-time computations and optimise your code through inline expansion, thus ensuring your code is error free and operates at peak performance.
Link-time errors are more difficult to deal with, but usually mean you've violated the one-definition rule (ODR) in some way, either by providing two different definitions for the same name or by not providing any definition of a name.
Even if no errors occur and linking is successful, it does not mean your executable is error free. The computer will only do exactly what you've told it to do, but it cannot account for logic errors at runtime. Many of these can be caught at compile time by making prudent use of static assertions, however this isn't always possible so you should also provide "sanity" checks wherever necessary and include appropriate error handling wherever runtime logic cannot be guaranteed to hold.