Main > Free Download Search >

Free sid software for windows

sid

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 48
foo sid

foo sid


Sound chip of Commodores CBM-II, Commodore 64 and Commodore 128 home computers. more>> Sound chip of Commodores CBM-II, Commodore 64 and Commodore 128 home computers.

Sound chip of Commodore 64, Commodore 128 and Commodores CBM-II home computers.
System requirements:
- foobar2000

<<less
Download (175KB)
Added: 2008-10-01 License: Freeware Price: FREE
391 downloads
GetSID 1.0

GetSID 1.0


GetSID does just what it says, it gets the SID or security identifier used on Microsoft network domains. more>>
GetSID does just what it says, it gets the SID or security identifier used on Microsoft network domains. GetSID is a small, simple and easy-to-use application that does just what it says, it gets the SID or security identifier used on Microsoft network domains.
You can type in a username and a domain and get the SID for it.
System requirements:
- It requires that you have the Microsoft .Net Framework installed to work, which is on most PCs already.
<<less
Download (7KB)
Added: 2007-07-24 License: Freeware Price:
1081 downloads
NewSID 4.10

NewSID 4.10


Learn about the computer SID problem everybody has been talking about and get a free computer SID changer more>>
Learn about the computer SID problem everybody has been talking about and get a free computer SID changer Many organizations use disk image cloning to perform mass rollouts of Windows. This technique involves copying the disks of a fully installed and configured Windows computer onto the disk drives of other computers. These other computers effectively appear to have been through the same install process, and are immediately available for use.
While this method saves hours of work and hassle over other rollout approaches, it has the major problem that every cloned system has an identical Computer Security Identifier (SID). This fact compromises security in Workgroup environments, and removable media security can also be compromised in networks with multiple identical computer SIDs.
Demand from the Windows community has lead Symantec and Altiris to develop programs that can change a computers SID after a system has been cloned. However, Symantecs SID Changer andSymantecs Ghost Walker are only sold as part of each companys high-end product. Further, they both run from a DOS command prompt (Altiris changer is similar to NewSID).
NewSID is a program we developed that changes a computers SID. It is free, comes with full source, and is a Win32 program, meaning that it can easily be run on systems that have been previously cloned. NewSID works on Windows NT 4, Windows 2000, Windows XP and Windows .NET Server.
One of the most popular ways of performing mass Windows rollouts (typically hundreds of computers) in corporate environments is based on the technique of disk cloning. A system administrator installs the base operating system and add-on software used in the company on a template computer. After configuring the machine for operation in the company network, automated disk or system duplication tools (such as Symantecs Ghost, PowerQuests Image Drive, Altiris RapiDeploy , and Innovative Softwares ImageCast) are used to copy the template computers drives onto tens or hundreds of computers. These clones are then given final tweaks, such as the assignment of unique names, and then used by company employees.
Another popular way of rolling out is by using the Microsoft sysdiff utility (part of the Windows Resource Kit). This tool requires that the system administrator perform a full install (usually a scripted unattended installation) on each computer, and then sysdiff automates the application of add-on software install images.
Because the installation is skipped, and because disk sector copying is more efficient than file copying, a cloned-based rollout can save dozens of hours over a comparable sysdiff install. In addition, the system administrator does not have to learn how to use unattended install or sysdiff, or create and debug install scripts. This alone saves hours of work.
NewSID is an application we developed to change a computers SID. It first generates a random SID for the computer, and proceeds to update instances of the existing computer SID it finds in the Registry and in file security descriptors, replacing occurrences with the new SID. NewSID requires administrative privileges to run. It has two functions: changing the SID, and changing the computer name.
To use NewSIDs auto-run option, specify "/a" on the command line. You can also direct it to automatically change the computers name by including the new name after the "/a" switch. For example:
newsid /a [newname]
Would have NewSID run without prompting, change the computer name to "newname" and have it reboot the computer if everything goes okay.
NewSID starts by reading the existing computer SID. A computers SID is stored in the Registrys SECURITY hive under SECURITYSAMDomainsAccount. This key has a value named F and a value named V. The V value is a binary value that has the computer SID embedded within it at the end of its data. NewSID ensures that this SID is in a standard format (3 32-bit subauthorities preceded by three 32-bit authority fields).
Next, NewSID generates a new random SID for the computer. NewSIDs generation takes great pains to create a truly random 96-bit value, which replaces the 96-bits of the 3 subauthority values that make up a computer SID.
Three phases to the computer SID replacement follow. In the first phase, the SECURITY and SAM Registry hives are scanned for occurrences of the old computer SID in key values, as well as the names of the keys. When the SID is found in a value it is replaced with the new computer SID, and when the SID is found in a name, the key and its subkeys are copied to a new subkey that has the same name except with the new SID replacing the old.
The final two phases involve updating security descriptors. Registry keys and NTFS files have security associated with them. Security descriptors consist of an entry that identifies which account owns the resource, which group is the primary group owner, an optional list of entries that specify actions permitted by users or groups (known as the Discretionary Access Control List - DACL), and an optional list of entries that specify which actions performed by certain users or groups will generate entries in the system Event Log (System Access Control List - SACL). A user or a group is identified in these security descriptors with their SIDs, and as I stated earlier, local user accounts (other than the built-in accounts such as Administrator, Guest, and so on) have their SIDs made up of the computer SID plus a RID.
The first part of security descriptor updates occurs on all NTFS file system files on the computer. Every security descriptor is scanned for occurrences of the computer SID. When NewSID finds one, it replaces it with the new computer SID.
The second part of security descriptor updates is performed on the Registry. First, NewSID must make sure that it scans all hives, not just those that are loaded. Every user account has a Registry hive that is loaded as HKEY_CURRENT_USER when the user is logged in, but remains on disk in the users profile directory when they are not. NewSID identifies the locations of all user hive locations by enumerating the HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionProfileList key, which points at the directories in which they are stored. It then loads them into the Registry using RegLoadKey under HKEY_LOCAL_MACHINE and scans the entire Registry, examining each security descriptor in search of the old computer SID. Updates are performed the same as for files, and when its done NewSID unloads the user hives it loaded. As a final step NewSID scans the HKEY_USERS key, which contains the hive of the currently logged-in user as well as the .Default hive. This is necessary because a hive cant be loaded twice, so the logged-in user hive wont be loaded into HKEY_LOCAL_MACHINE when NewSID is loading other user hives.
Finally, NewSID must update the ProfileList subkeys to refer to the new account SIDs. This step is necessary to have Windows NT correctly associate profiles with the user accounts after the account SIDs are changed to reflect the new computer SID.
NewSID ensures that it can access and modify every file and Registry key in the system by giving itself the following privileges: System, Backup, Restore and Take Ownership.
<<less
Download (43KB)
Added: 2006-05-29 License: Freeware Price:
836 downloads
SIDDecode 1.0

SIDDecode 1.0


SIDDecode will take a given SID or security identifier and convert it to a username and domain. more>>
SIDDecode will take a given SID or security identifier and convert it to a username and domain. SIDDecode is a small, simple and easy-to-use application that will take a given SID or security identifier and convert it to a username and domain.
Simply enter the SID and it will provide you with the username and domain for that SID.
System requirements:
- It requires that you have the Microsoft .Net Framework installed to work, which is on most PCs already.
<<less
Download (8KB)
Added: 2007-07-24 License: Freeware Price:
827 downloads
PsGetSid 1.43

PsGetSid 1.43


Displays the SID of a computer or a user. more>> Have you performed a rollout, only to discover that your network might suffer from the SID duplication problem? In order to know which systems have to be assigned a new SID (using a SID updater like our own NewSID), you have to know what a computers machine SID is. Up until now, theres been no way to tell the machine SID without knowing Regedit tricks and exactly where to look in the Registry. PsGetSid makes reading a computers SID easy, and works across the network so that you can query SIDs remotely. PsGetSid also lets you see the SIDs of user accounts and translate a SID into the name that represents it.<<less
Download (1.00MB)
Added: 2008-08-12 License: Freeware Price: Free
350 downloads
XMPlay SID plugin 25b

XMPlay SID plugin 25b


plugin for XMPlay for playing Commodore 64 SID music more>> XMP-SID is a plugin for XMPlay for playing Commodore 64 SID music, featuring:
high quality playback
cycle exact C64 emulation by libsidplay2 and reSID engine
PSID, RSID (+BASIC), Sidplayer (+stereo) and C64 executable files (PRG) loading
neat sound effects (filters, configurable stereo separation, surround and fadeout)
SLDB (song-length database) support
advanced song length manipulation
STIL (SID Tune Information List) and BUGList comments displaying
(also with archived HVSC and files outside of HVSC directory) [see screenshot]
Favourite Top 100 SIDs rank displaying
PlaySID tags and Sidplayer comments displaying
fast time-based seeking and subsong switching
configurable C64 emulation
<<less
Download (170KB)
Added: 2008-08-13 License: Freeware Price: Free
466 downloads
SID iPod Copier 1.0.0.1

SID iPod Copier 1.0.0.1


IPod Copier is an easy to use tool to copy your iPod contents to your computer backup library DB, and restore it again. You can Copy selected play lists to PC, Copy selected tracks, View track information, Backup and restore Library DB. Your system must have iTunes 4.7 or later installed, The iPod must be? more>> <<less
Download (1746kb)
Added: 2009-10-07 License: Freeware Price:
downloads
SID iPod Cleaner 1.0.0.1

SID iPod Cleaner 1.0.0.1


IPod Cleaner is an easy to use tool to to cleane up your itunes library contents. You can remove duplicates using duplicate filter and delete dead tracks from the library.You can also view any track information by double click on the track.Your system must have iTunes 4.7 or later installed. iPodCleaner will? more>> <<less
Download (1814kb)
Added: 2009-10-07 License: Freeware Price:
downloads
SID iPod Manager 1.0.0.1

SID iPod Manager 1.0.0.1


IPod Manager is an easy to use tool to manage your iPod,it can copy files iPod to PC and vice versa, remove files from liberary, delete dead tracks, synchoranize your iPod with your library, creat new playlists delete files from library and hard disk, Your system must have iTunes 4.7 or later installed, The? more>> <<less
Download (1814kb)
Added: 2009-10-07 License: Freeware Price:
downloads
Sid Meier's Alpha Centauri Nod mod

Sid Meier's Alpha Centauri Nod mod


Sid Meiers Alpha Centauri Nod mod is an interesting and brand new mod for Alpha Centauri which replaces the Spartan faction with the the Brotherhood of Nod from Command & Conquer: Tiberian Sun. more>>

Sid Meier's Alpha Centauri Nod mod is an interesting and brand new mod for Alpha Centauri which replaces the Spartan faction with the the Brotherhood of Nod from Command & Conquer: Tiberian Sun.

<<less
Download (373.5KB)
Added: 2004-07-28 License: Freeware Price:
downloads
Sid Meier's Railroads Holiday scenario

Sid Meier's Railroads Holiday scenario


This free scenario puts you in charge of saving Christmas by helping out Santa and his elves more>>

Sid Meier's Railroads Holiday scenario is created as an interesting misc game which puts you in charge of saving Christmas by helping out Santa and his elves. It includes a custom train, holiday-themed goodies and music, and a North Pole map.

<<less
Download (14.6MB)
Added: 2007-01-03 License: Freeware Price:
155 downloads
SID Video Cutter & Splitter 1.8

SID Video Cutter & Splitter 1.8


A program used to edit the settings from various video files. more>> A program used to edit the settings from various video files.

Video Cutter & Splitter is a program used to cut and save a selected part from any video file, split your movie at any position and save any frame from the movie as an image.
SID Video Cutter & Splitter supports (AVI, MPEG, WMV, ASF) video file formats for input and output files.
Main features:
- Edit common video formats: AVI, MPEG, WMV and ASF.
- Display audio and video information.
- Zoom tool.
- Save frames from your movie to bitmap files.
- Select and cut any part of your movie.
- Split your movie at any selected point.
- Easily select regions using two movie sliders.
- Save to AVI, MPEG and WMV formats using your custom codec configuration.
- Multi-language interface.
This download is marked as adware because it displays advertisement banners or other type of commercials while running.

Enhancements:
- ADWARE INCLUDED - you can, however, UNCHECK that ADWARE at installation!
- System Guards

<<less
Download (14.8MB)
Added: 2008-10-03 License: Adware Price: USD24.99
9705 downloads
Sid Meier's Railroads v1.10 patch

Sid Meier's Railroads v1.10 patch


Add a free camera and a new "use all trains" command with this patch for the railroad simulation. more>> <<less
Download (21.2MB)
Added: 2007-01-07 License: Freeware Price:
200 downloads
Sid Meier's Railroads Train Livery pack 1

Sid Meier's Railroads Train Livery pack 1


Add four new train liveries to the railroad simulation. more>>

Sid Meier's Railroads Train Livery pack 1 offers you an asset pack that adds four new train liveries to the railroad simulation. You can use with Sid Meier's Railroads: the 4-8-4 Golden State "Freedom Train" livery; the F-Series Diesel "Screaming Skull" livery; the A4 Mallard "Union Jack" livery; and the Class 40 Diesel "Yellow Sub" livery.

How to use:

  1. To make these train liveries available, place the "TrainLiveryPack1.FPK" in your "CustomAssets" folder, which should be found by navigating to the following folder: "My DocumentsMy GamesSid Meier's Railroads!CustomAssets".
  2. To remove these paint schemes from the game, simply delete the "TrainLiveryPack1.FPK" file.
<<less
Download (3.3MB)
Added: 2007-01-07 License: Freeware Price:
165 downloads
SID YouTube Video Grabber to PC-iPod-PSP 1.0.0.1

SID YouTube Video Grabber to PC-iPod-PSP 1.0.0.1


SID YouTube Video Grabber to PC-iPod-PSP is an easy way to convert YouTube Video files to PC-iPod-PSP .The Supported Web Sites are Youtube.com ,Google Video ,DailyMotion.com ,iFilm.com ,Myspace.com ,Angryalien.com ,ZippyVideoes.com ,Blip.TV ,Break.com ,Putfile.com ,Bolt.com .The download tab is the default? more>> <<less
Download (10783kb)
Added: 2009-10-07 License: Freeware Price:
downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4