answersLogoWhite

0

gpedit.msc, but it is only allowed in xp pro, or xp ultimate, vista ultimate and vista business.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What are the program file name and extensions to the Microsoft management console?

.msc


Why might an interest group file a brief in a group file a brief in a court case?

to try to influence policy


A console is saved in a file with what kind of file extension?

A console is saved in a file with an .msc file extention, and a snap-in in a console can itself be a console.


Is possible to transfer c sharp console application program to giff file type?

There is no standard file type as GIFF. You probably mean GIF (graphics interchange format). If so, the answer is no;- you cannot convert a C# console application program to an image.


How can write a c program to store students record in a file?

Write a console based C++ program that reads student information from a text file, build an array of objects of type class StudentInfo,


What are the program file name and extension of the Microsofts management console?

The filename and extension of the file you want to start and .msc (eventvwr.msc)


How does a file replication service work?

File replication service is used for shared group policy objects and files. When the service detects changes to a file it will replace that file on all of the systems that are connected to the group.


What is the file extension assigned to a console file for Windows XP?

A console is saved in a file with an .msc extension.


How do i Prevent users from saving certain file extensions to c drive using group policy?

Hi Group policy won't do it, but check this: http://blogs.techrepublic.com.com/datacenter/?p=201 File screening on the machine... Habeeb


Why does my ruby program give me a disappearing black box?

By default an rb file is interpreted in a command console, and will open its own unless run from one. If your program doesn't wait, or has an error, it will immediately close the console window which was created for it. Usually the solution is to run 'cmd' and start your script from there, then the console window will persist.


A group file is called?

Unless I am mistaken. A group(ed) file is named based upon the "type" of host program or directory you are downloading it from, or keeping it on. Whether it be a music, or video file. It really just depends.


How could Java classes direct program messages to the system console but error messages say to a file?

Sytem.out amd System.err is used to get the output, and refer to standard output strem and which is by default console ... u can send the output to any other stream or log file either by importing java.io.file and show the output to the console and run time error to any file using exception handling .... or u can give the command while running the program which will redirect this to log file as ... java ClassName 2error.log this will send error message to error.log file and output to console. ... u can send both the output and error to log file as... java ClassName output.log 2 error.log ... here ClassName is the name of the calss file which u wanted to execute