Sponsored Content
Special Forums Windows & DOS: Issues & Discussions Analogues applications between Windows Application to Linux Post 302924114 by vbe on Thursday 6th of November 2014 10:03:04 AM
Old 11-06-2014
You are talking here about users PC no? That is more how your PC staff masters the inners of BIOS and Windows registry... But I see no reason why users would want to change their IP, all they gain is a big risk of not having any more connection and having to call the support and get a blame for messing their configuration...
My concern is that I suspect you are not using simple AD only but may have also some security tools linked with it suchas radius or GINA and some fancy MS proxies...
 

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

executing applications/commands on a unix server from a windows PC

i have a network drive (samba) mounted on to my PC and also i have SSH client on my machine. however i need to run applications/commands on a unix server from the middle of a different executable(windows compatable one). so i need to connect to the unix server from SSH through the... (1 Reply)
Discussion started by: megastar
1 Replies

2. UNIX for Dummies Questions & Answers

What kind of security applications UNIX and Windows have in common?

Hi guys, may I know what kind of security applications do UNIX and Windows have in common? This is related to a project that is approaching its deadline, so would you all please be kind enough to help me? Thank You. (0 Replies)
Discussion started by: austintham
0 Replies

3. Windows & DOS: Issues & Discussions

Porting Applications Using Windows SFU

I am trying to port a UNIX POSIX compliant application to Windows using Windows Services For UNIX version 3.5. The application is written in C and therefore I need to compile it using the cc command. I am running into many problems, but the one that specifically has me stuck right now is this.... (0 Replies)
Discussion started by: sidinsd
0 Replies

4. AIX

How can invoke applications on Windows machine from AIX server

Hi folks, Before I start explaning my problem let me tell you I am new to Unix environment. I am working on a application. It was developed in java (on Windows machine). But application for production will be deployed on AIX machine. One of my requirement is I need to invoke QTP scripts and... (3 Replies)
Discussion started by: sachinrt
3 Replies

5. UNIX for Dummies Questions & Answers

startX windows application during boot.....putty connection takes the windows

Dear all i am new to linux/debian i run my application on the computer...during startup in bashrc i wrk wid dis script to invoke startx..i do this above command and it works perfectly... if && ; then startx -- -br 1>/dev/null exit 0 fi i use winscp for file transfer and putty for... (1 Reply)
Discussion started by: venkat_330
1 Replies

6. UNIX for Dummies Questions & Answers

How can I rebuild applications that developed in UNIX? I need to use it in windows os with cygwin

I need to rebuild an application that developed in unix environment and run in windows OS with cygwin. so How can I rebuild from the source code? is there any one who said something on this regard? (2 Replies)
Discussion started by: bejirond
2 Replies
registry(n)						       Tcl Bundled Packages						       registry(n)

__________________________________________________________________________________________________________________________________________________

NAME
registry - Manipulate the Windows registry SYNOPSIS
package require registry 1.1 registry option keyName ?arg arg ...? _________________________________________________________________ DESCRIPTION
The registry package provides a general set of operations for manipulating the Windows registry. The package implements the registry Tcl command. This command is only supported on the Windows platform. Warning: this command should be used with caution as a corrupted reg- istry can leave your system in an unusable state. KeyName is the name of a registry key. Registry keys must be one of the following forms: \hostname ootnamekeypath rootnamekeypath rootname Hostname specifies the name of any valid Windows host that exports its registry. The rootname component must be one of HKEY_LOCAL_MACHINE, HKEY_USERS, HKEY_CLASSES_ROOT, HKEY_CURRENT_USER, HKEY_CURRENT_CONFIG, HKEY_PERFORMANCE_DATA, or HKEY_DYN_DATA. The keypath can be one or | more registry key names separated by backslash () characters. Option indicates what to do with the registry key name. Any unique abbreviation for option is acceptable. The valid options are: registry broadcast keyName ?-timeout milliseconds? | Sends a broadcast message to the system and running programs to notify them of certain updates. This is necessary to propagate | changes to key registry keys like Environment. The timeout specifies the amount of time, in milliseconds, to wait for applications | to respond to the broadcast message. It defaults to 3000. The following example demonstrates how to add a path to the global Envi- | ronment and notify applications of the change without reguiring a logoff/logon step (assumes admin privileges): | set regPath {HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerEnvironment} | set curPath [registry get $regPath "Path"] | registry set $regPath "Path" "$curPath;$addPath" | registry broadcast "Environment" | registry delete keyName ?valueName? If the optional valueName argument is present, the specified value under keyName will be deleted from the registry. If the optional valueName is omitted, the specified key and any subkeys or values beneath it in the registry hierarchy will be deleted. If the key could not be deleted then an error is generated. If the key did not exist, the command has no effect. registry get keyName valueName Returns the data associated with the value valueName under the key keyName. If either the key or the value does not exist, then an error is generated. For more details on the format of the returned data, see SUPPORTED TYPES, below. registry keys keyName ?pattern? If pattern isn't specified, returns a list of names of all the subkeys of keyName. If pattern is specified, only those names match- ing pattern are returned. Matching is determined using the same rules as for string match. If the specified keyName does not exist, then an error is generated. registry set keyName ?valueName data ?type?? If valueName isn't specified, creates the key keyName if it doesn't already exist. If valueName is specified, creates the key key- Name and value valueName if necessary. The contents of valueName are set to data with the type indicated by type. If type isn't specified, the type sz is assumed. For more details on the data and type arguments, see SUPPORTED TYPES below. registry type keyName valueName Returns the type of the value valueName in the key keyName. For more information on the possible types, see SUPPORTED TYPES, below. registry values keyName ?pattern? If pattern isn't specified, returns a list of names of all the values of keyName. If pattern is specified, only those names match- ing pattern are returned. Matching is determined using the same rules as for string match. SUPPORTED TYPES
Each value under a key in the registry contains some data of a particular type in a type-specific representation. The registry command converts between this internal representation and one that can be manipulated by Tcl scripts. In most cases, the data is simply returned as a Tcl string. The type indicates the intended use for the data, but does not actually change the representation. For some types, the registry command returns the data in a different form to make it easier to manipulate. The following types are recognized by the registry command: binary The registry value contains arbitrary binary data. The data is represented exactly in Tcl, including any embedded nulls. none The registry value contains arbitrary binary data with no defined type. The data is represented exactly in Tcl, including any embedded nulls. sz The registry value contains a null-terminated string. The data is represented in Tcl as a string. expand_sz The registry value contains a null-terminated string that contains unexpanded references to environment variables in the normal Windows style (for example, "%PATH%"). The data is represented in Tcl as a string. dword The registry value contains a little-endian 32-bit number. The data is represented in Tcl as a decimal string. dword_big_endian The registry value contains a big-endian 32-bit number. The data is represented in Tcl as a decimal string. link The registry value contains a symbolic link. The data is represented exactly in Tcl, including any embedded nulls. multi_sz The registry value contains an array of null-terminated strings. The data is represented in Tcl as a list of strings. resource_list The registry value contains a device-driver resource list. The data is represented exactly in Tcl, including any embedded nulls. In addition to the symbolically named types listed above, unknown types are identified using a 32-bit integer that corresponds to the type code returned by the system interfaces. In this case, the data is represented exactly in Tcl, including any embedded nulls. PORTABILITY ISSUES
The registry command is only available on Windows. KEYWORDS
registry registry 1.1 registry(n)
All times are GMT -4. The time now is 09:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy