Adding few settings for OS deployment as part of image deployment

Hi Team,
We have windows 8.1 U image created and deploying that image to computers using config manager 2012 R2 (MDT integrated)
We have few other stuff added to image when it is deployed on the machine as side load\part of customsettinsg.ini or unattend.xml..Could anyone points to right direction with the following
- Home page set to say www.bing.com
 - Proxy settings on machine (GP\registry,powershell or any other) that configure IE with proxy configuration
- Adding trusted sites in IE
I believe we still don't have security compliance manager that has 8.1 template.
Regards

Hi,
I would do that using group policy instead for all of the above settings, or the computer is not Domain Joined?
For the Security Compliance Manager Template for Windows 8.1 / IE11 they are live here:
http://blogs.technet.com/b/secguide/archive/2014/09/04/scm-baselines-for-windows-8-1-ie-11-and-server-2012-r2-are-now-live.aspx
Regards,
Jörgen
-- My System Center blog ccmexec.com -- Twitter
@ccmexec

Similar Messages

  • Best Settings for making a Secure, Reliable Disk Image?

    Hi guys!
    Can anybody direct me to the best settings that can be used to make a secure Disk image using the MacOS X disc utility?
    I wish to make my computer family friendly, yet keep my proffessional and private files secure/private and innaccesible to children and unautorized individuals. I have heard that files saved inside encrypted images (password protected) are also not indexed in the finder wich is perfect for the privacy I seek (this is true right?).
    I know how to access the tools, but the right settings for making a trustworthy image remain elusive. Already tried with some of the formats and information placed inside...started becoming glitchy and unreliable, even after removing the files and making them unencrypted again.I'm abaout to try with the HFS+ format.
    I cannot lose the files I wish to protect. But I need to secure them and if anything, be capable of backing up the image by copying it into a HFS+ formated external hard drive every once in a while. Can this be done?
    Is there a risk of data loss in the encryption process? One of my external drives (FAT 32) even started to make unrelated neighboring folders "disappear" after making an image inside ( I though I could make an image anywhere and save stuff securely at that point...but nearly losing the entire cashe of info made me backtrack and simply avoid the process until i'm sure of what I'm setting up---so many compatibility problems!)
    • Don't know what settings to use.
    • Some say there is a small chance of a disk image being damaged or corrupted (for no reason whatsoever)...but having trouble right off the bat, with a brand new image worries me. WHAT ARE THE RISKS? Is the system unrefined and unrealiable?
    I plan to make the Image a sparse file,using the HMS+ format, 400GB....regular encryption. I plan to copy all my sensitive stuff inside and delete unprotected copies. Risky? Are images unreliable in general? or where my glitches abnormalities?---Can the images hold collections of files or do they become more unrealiable the bigger they get (what I fear). I don't wan't to have to make dozens of images to protect my files.
    Can a external drive be formated to HMS+ and accept  a drag and dropped copy of a 400GB image? FAT32 will just not accept it. Would there be risk of the image being damaged in the transfer? NOTE that copying the data into an external drive would be to have a secure backup of the data. If I can't trust the backup to be carbon copy intact...it isn't a backup.
    Securing files is really proving to be bothersome, despite having "refined" tools at my disposal.
    Thanks for your help!

    Do you place your backups on external disks? Are your external disks formatted HFS+?
    Can HFS+ Disk image be Drag dropped into a HFS+ formatted external disk in order to copy them? or is the process blocked like what happens to large Disk images in FAT 32?
    I'm trying to lock on to the right format to apply to everything. My steps will be:
    Make the image: So far a sparse image in HFS+ format, 400 GB, No partition map.
    Drag sensitive work to Disk image. Once transfer in complete delete originals.
    Format an external disk into the journaled HFS+ format. Drag drop Secure disk image to back it up.
    Do you see any problems with this process? Anything i'm missing?

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • I bought the macbook pro few months ago can i get the lion upgrade for free as a part of my software support?

    i bought the macbook pro few months ago can i get the lion upgrade for free as a part of my software support?

    They announced it; sorry, no free Lion:
    "The Mac OS X Lion Up-To-Date upgrade is available at no additional charge via the Mac App Store to all customers who purchased a qualifying new Mac system from Apple or an Apple Authorized Reseller on or after June 6, 2011. Users must request their Up-To-Date upgrade within 30 days of purchase of their Mac computer. Customers who purchase a qualifying Mac between June 6, 2011 and the date when Lion is available in the Mac App Store will have 30 days from Lion’s official release date to make a request."

  • Deploying Settings for Creative Suite Products - network environment with redirected folders

    Hi there.  We have some deployment questions regarding settings for the Adobe Master Collection.  Because we have redirected folders for my docs, etc., they are located on our file server for all of our users (school environment).  The problem is all Adobe programs default their save and caching locations to the my docs folder, which is on the server and causes slow downs and network traffic issues.  Is there a way to set these with a file or a deployment option, or what options do we have?

    This stuff is stored in the prefs of the programs and unless you go in and change each of the prefs files there is no way to change this.
    Mylenium

  • New ALchemy settings for some major games for Win7 (64-bit)...

    [color="#ff0000"]Update 2/0/0 - Added Sid Meier's Civilization V: Ok this game is so hard to find in the registry because it uses a completely radically new type of installer that basically is a hybrid installer based on pulling the steam client game updates for Civ V and the data from the actual Civ V install DVD. The definiti've install location is similar to other steam apps are installed @ location C:\Program Files (x86)\Steam\steamapps\common\sid meier's civilization v. (The blue part is common for the majority of all steam installed games locations. Finding this for Civ V was not so easy, however.
    Here is the actual entry you should add to your ALchemy.ini file and is the ONLY location that points to the aforementioned correct install path in the entire HKLM tree that is valid. This is truly a very very unique and bizarre and radically new way to find and detect correct install path strings without resorting to using the GAMEUX path (which is different on everyones computer). This path is indentical for all Civ V installs and therefore the most valid. The ALchemy team needs to address these new radical ways that game companies are injecting the install string into the registry in the future or ALchemy will start to break big time. Notice its the Uninstall path that actually functions as the only correct static install path for the game. Its a dual use path. Very clever!
    [Sid Meier's Civilization V]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mi crosoft\Windows\CurrentVersion\Uninstall\Steam App 8930\InstallLocation
    SubDir=
    Duration=5
    Preset=
    GamePath=
    RootDirInstallOption=FALSE
    Buffers=4
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added Star Wars Galaxies Trading Card Game: A nice game if you have SWG that uses gorgeous sound while playing. Here is the ALchemy.ini addition.
    [Star Wars Galaxies Trading Card Game]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\App Paths\SWGTCGGame.exe\Path
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added Star Trek Online: The only correct and static install path for this wonderful game.
    [Star Trek Online]
    RegPath=HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online\InstallLocation
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added A few oldies but goodies: Some older games I have managed to get to work with ALchemy. The sound in these older games is UNREAL in how good they sound now!
    [Fallout Tactics]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\4 Degrees East\Fallout Tactics\ProgramFolder
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [UFO Afterlight]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\AL TAR\UFO Afterlight\Path
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [UFO Extraterrestrials]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Tr i Synergy\UFO Extraterrestrials\installed to
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    The original post:
    I was playing around with the D:\Program Files (x86)\Creative\ALchemy\ALchemy.ini file to force ALchemy to run with all the games on my computer. After I changed the reg paths in this .ini file all the games I had on my computer started working with ALchemy running in Windows 7 64-bit. Windows 7 registry paths for some major game titles I play are NOT in the standard location that the ALchemy.ini file has them as which is why they never get registered. I run a 64-bit version of Windows 7 so the path is slightly different then the default ones in the .ini file. Here is what I added/changed and all these games now register with ALchemy and work! Game heading bolds are my addition in this post and not how they look like in the .ini file to help see the game titles better.
    I tend to shy away from any GAMEUX registry strings (for example: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\GameUX\S--5-2-837354825-494596859-745999896-00\{AFF227C-B0BB-49A5-8DFF-E87FDB864D}\ConfigApplicationPath) as they may be different for one computer to the next as they look identical to a SID string which changes radically as it is created when the game is installed. The strings should be static so they would appear identical on my computer as they would on yours. Having a string in the install path that looks like above just gives me the creeps that it is not valid. Since I only have my computer to compare this against I am not positi've of this. Just to be sure stay away from GameUX strings that are alphanumeric in nature as they can change from computer to computer or reinstall to reinstall making ALchemy fail. More on this at the bottom of this post.
    [Cabal]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mi crosoft\Windows\CurrentVersion\Uninstall\CABAL Online_is\InstallLocation
    Preset=
    [Dragon Age Origins]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bi oWare\Dragon Age\Path
    Preset=
    [Dungeons & Dragons Online: Eberron Unlimited]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Tu rbine\DDO\InstallLocation
    Preset=
    [Sid Meier's Civilization IV]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Civilization IV: Beyond the Sword]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4 - Beyond the Sword\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Civilization IV: Warlords]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4 - Warlords\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Pirates!]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\At ari\Sid Meier's Pirates!\INSTALL_PATH
    Preset=
    [Star Wars Galaxies]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\App Paths\SwgClient_r.exe\Path
    Preset=
    [Wizard0]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Ki ngsIsle Entertainment, Inc.\Wizard0\InstallPath
    Preset=
    [World of Warcraft]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bl izzard Entertainment\World of Warcraft\InstallPath
    Duration=0
    Preset=
    I left the Preset= in all of them to have default settings. You can change or add the additional options to your pleasure but I find the defaults to work just fine. Here are all the settings for the options from the top of the .ini file.
    ;Creative ALchemy titles
    ;Format/Options:
    ;? [TITLE]
    ;? RegPath <-- registry path containing string to executable or executable's directory (use this when available; alternati've is GamePath)
    ;? GamePath <-- Directory to look for app (use if RegPath can't be used)
    ;? Buffers <-- #buffers to use (default is 4)
    ;? Duration <-- buffer duration (default is 25)
    ;? DisableDirectMusic <-- disable DirectMusic support (default is False)
    ;? MaxVoiceCount <-- maximum number of voices to support (default is 28)
    ;? SubDir <-- subdirectory offset off of path pointed to by RegPath for library support (default is empty string)
    ;? RootDirInstallOption <-- option to install translator support in both RegPath and SubDir directories (default is False)
    Notice if you do a clean reinstall of your games in Windows 7 the game paths are in actuality in the reg path of \Wow6432Node and not just the raw HKLM\Software location due to the way the 64-bit architecture restructures its registry keys to work with 32-bit games (as many of these still are in fact).
    The duration and such you can play with but I just left the settings as they were and changed the executable path location that ALchemy needs to find and work with the game is all. If you reinstall Star Wars Galaxies the new Station Launcher will put the game folder under its location and therefore it may be different in your registry. SWG (and Cabal to some extent) is the only game in this list that specifically points to an abnormal location in the registry for the install path due to the way it is launched from a voicechat type of application (The Station Launcher). But at least it works this way, so I don't care too much. I even got my classic game Sid Meier's Pirates! to work with ALchemy, yay! For Cabal I used the uninstall location for the true install path. I assume as long as the path is valid, it will work and it shows up in the ALchemy window, yay!
    [color="#ff0000"]Please verify these paths in your registry do in fact have these valid regitry entries using regedit or regedt32 and not just modify the .ini file as I have shown above.
    GameUX strings
    There is one game I can not find any verifiable path for in the registry and that's Sid Meier's Colonization =(? If anyone has a clue where this path is stored or how to edit the .ini file to reflect the correct location and work with ALchemy please let me know! I have tried this location:
    [Sid Meier's Colonization]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\GameUX\S--5-2-837354825-494596859-745999896-00\{AFF227C-B0BB-49A5-8DFF-E87FDB864D}\ConfigApplicationPath
    Preset=
    ...but it does not seem to like the GameUX registry path at all and won't detect it. Probably because its a specialized SID (in other words, the SID will be different on my computer then it is on yours) and ALchemy does not know how to transpose SID registry entries for it to work. GameUX is basically the registry location for all your Games as they are stored under the Start > Game location of your desktop. So if anyone can figure out how to include Direct3D games that are older but do not have a valid installation registry entry please let us know! Of course I could just use the full true path in this .ini file but I am not sure how that would look like and I don't want to break ALchemy for the games it does work with. So I stuck with just valid registry entries.
    I own an X-Fi XtremeGamer sound card with version .4.02 of ALchemy running on Windows 7 64-bit as of this post.

    ?pmc64 wrote:
    Why are you adding new games to alchemy No new games use eax and surround sound should work properly without it. The alchemy team doesnt need to do anything for the future of the program because it's for legacy games. You really don't? need to add wow6432node because it should read it anyways on 64 bit systems. At least it does with the 6 games i have installed. That steam regpath will work on any steam game. you just need to change the app number. About the only games that I have that need it are the old gold source games and far cry because for some reason the original reg path isnt on there. You really should update your alchemy version to 43.06 because the previous versions have problems with windows 7 and some games wont work right unless you change a .dll file to a older one.
    A few things about your post.
    ) Alchemy does not automatically detect the registry path settings as you have been misled for a lot of games you have to manually tell it where it goes. Hence this post.
    2) You are completely missing the point of ALchemy, which is to add the depth of audio in games (yes even new ones) which is lacking without them using just EAX.
    3) ALchemy is for new games not just legacy ones. hence why I have added the keys for both.
    4) I have had numerous ppl tell thank me for posting this thread and their games now are read by ALchemy. If you choose to not follow this thread its you choice. No worries =)
    5) My updater does not show any version besides 4.02 and I dont look for something even newer in some obscure forum post or whatnot. Official beta drivers from Creative tend to be less then stellar in performace (if any indicitation is by how their li've drivers are its even worse in their beta flavors). When I do the auto update it returns:
    Status: No updates are necessary for your Creative product.
    Your system already has the latest versions installed.

  • When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself.

    I have had a problem with my iphone 4s for some time now but I have just been so busy to try and fix it. When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself. However, even though it says the data is on, I can’t use the data when I don’t have wifi. I tried restoring my phone a few times and the last time I did that, it wouldn’t turn my service on so I had to talk with a Verizon agent for a long time trying to fix it and finally they simply sent me another phone. I thought hey new phone, this part will be fixed. However, I got my service to work but it’s still the same problem with the cellular data. I have just left it alone and not worried about it, but it’s still not fixed and thought I could ask on here if anyone had any ideas. It has something to do with the apps actually installed on the iphone. Apps like the mail, safari, settings, itunes apps, etc. All my other apps turn on and off just fine. Does anyone have any ideas?

    Read the User's Guide... it covers how to backup and sync the device as designed.

  • Profile Manager Settings for Group does not display for individual members of the group

    Hi there,
    Can anyone confirm whether I am going mad or not, I and new to Mac Server and have set up Profile Manager on OSX Mavericks from scratch and have been using it successfully to deploy enterprise iPads. I have just gone to edit the profile as we wish to increase the timeout time to locking and have been greeted with something strange.
    We have all users in a Group which has settings applied for timeout, pass code change etc. however if I go to an individual account who is part of that group then it isn't showing any settings for that user and it would appear I need to set them again. Similarly if I go to a device belonging to a member of the group then its not showing any settings for that device.
    I would have assumed that if you set restrictions for a group then when you view the restrictions for a member of the group then it would be the same however it appears that you can have a separate payload for a group. Is this the case?
    I am grateful for any advice people can give me.
    Thanks again.
    Rob

    I would have assumed that if you set restrictions for a group then when you view the restrictions for a member of the group then it would be the same
    That was never the way it worked in older versions of 10.3, 10.4, 10.5, 10.6 Server.
    The restrictions for a Group were shown for a Group. The restrictions for a User (alone) were shown for that User.
    And the advantage is that if you see something wrong for a single user, you might be tempted to fix it there, in that user, and when you had changed six of them, you might remember that you meant that to be a group setting after all.
    And the software to implement them separately is simpler, but YOU have to test it to find out the end results of compositing Group and User settings.

  • Why does the tab in the settings for keynote for iOS for icloud keep flipping itself back to OFF?

    I added a keynote document to icloud/iworks on my imac. No sign that it nade it to my ipad2.  What i did notice is that the slider switch on the icloud settings for keynote on the ipad keeps restting itself back to OFF, despite several times setting it to on.  No sign of my Keynote file making it over from my iMac. Any suggestions?

    Just so we don't lose the point of the rant: is there anyway to fix or (please, please) eliminate this animation or scrolling or bouncing or whatever you'd like to call it? I have been looking for a solution for some months now and the few people who do manage to communicate their concern are never answered, or they get obscure advice on something in about:config that doesn't do squat.
    SO, IS THERE A WAY TO FIX OR ELIMINATE THIS 'FEATURE?'

  • Specifying access settings for tabs in portal pages (rel.2)

    Hello
    I'm having a problem with specifying access settings on tabs.
    I've enabled "Enable Item Level Security" on the page properties.
    I've created a new tab on the page, which i've added view privilegies for a specific group, selected specify access settings and unselected "Display Tab To Public Users".
    When this is done, the page should only be wievable for members of the group i selected and myself.
    But this isn't happening. Users that aren't in the selected group can still view the tab.
    What is happening here?
    Regards
    Per-Jarle Sfther

    Per-Jarle,
    Are you sure that the users are not part of a group that is included in the group you gave access to on the tab?
    Rich

  • Is it possible to change settings for an existing sequence?

    I am cutting a short "crowd-sourced" class play, shot by parents. I have 4 different types of footage from 4 cameras: Two are 720p (30p), one is a 640x480 .mov and the other was shot in 720p but burned to a PAL DVD so they are .VOB file rips at 25fps, 720 x 576 w/1.2 widescreen.The main camera is an .MTS file (AVCHD 720p)
    Since I am planning on ultimately making widescreen NTSC DVD's, I sync'd the cameras in a widescreen-DV sequence, then nested that into a new widescreen-DV sequence and activated the multi-cam. I did all of my actual editing in the new muti-cam sequence - but now I am thinking that I should have started with an AVCHD 720p sequence to sync cameras and just maintained 720p thoughout - until exporting the MPEG-2 file for the DVD.
    I can make a new 720p sequence and cut/paste everything from my timeline - but they would still be nested multi-cam cuts that link back to the original widescreen-DV sequenece I setup to sync the 4 cam views. I cannot seem to change the settings for the existing sequence - so is there maybe a workaround for what I am trying to do? Essentially, to trick the new 720p sequence (with all the actual multi-cam edits pasted into it) to linking to a new 720p sequence with the already sync'd cam footage pasted into it? And secondly, will it actually effect the quality of the final DVD output? I may also want to make a 720p web version for Vimeo if feasible...
    Any help would be greatly appreciated.

    I have created the new 720p AVCHD and cut/pasted all of my edits. That is not the problem.
    Almost of my edits (other than a few titles amd stil pics I added) are cuts from the original nested sequence called (4-CAM SYNC). It is a regular NTSC widescreen sequence. In this original sequence, I am scaling the the cameras down to fit the frame and sync'ing the four cameras. I am attempting to get this new sequence to link to a new 720p nested sequence that has my sync'd cam footage - to replace 4-CAM SYNC on the time, while still retaining all the edits I have made - I will just have to change some of my scaling settings in a few clips.
    It sure would be easier if I could change the "Editing Mode" parameter under Sequence Settings...

  • Which are the best settings for exporting comps before edditing in Premiere Pro

    Hello everyone!
    As the title says, which are the best settings for exporting comps from AE to Pr.Pro and then edit them?
    Let  me explain: I have two comps in AE (intro and outro) and want to export  them in Pr.Pro for edditing along with a fottage i shot.
    When i render them the size of the files are huge (30 sec= 7GB).
    Which  is the best method (and settings) i can export the intro and outro to a 'normal' file  size and then put them in Pr.Pro without loosing any quality??
    [Comp settings: HDTV 1080 29.97 (1920x1080)]
    AE and Premiere Pro both CS4

    If you're rendering and exporting an intermediate video file to go from After Effects to any other piece of post-production software (such as Premiere Pro), you want to make sure that you're not losing any quality.
    Most compression methods, which make movies smaller, also lose some of the image data---i.e., quality. There are a few compression methods that don't lose any image data; these are "lossless" codecs. These lossless codecs do decrease the size of a video file, but they're nowhere near as effective at decreasing size as the lossy codecs are. But file size isn't important when you're doing post-production work. Big files are a fact of life in post-production.
    Examples of lossless codecs include the PNG codec and the Animation codec at the highest quality settings, both of which can be used in a QuickTime (.mov) container. I prefer the PNG codec; it's more efficient for photorealistic images, whereas Animation is more efficient for things like cartoons. There are lots of other lossless and nearly lossless codecs. A lot of people that do video editing like the Lagarith codec, but that is something that you'd have to go and get; it's not part of a standard CS5 or QuickTime installation.
    See these FAQ entries for information about compression and why file sizes are big for losslessly encoded files:
    "FAQ: Why is my output file huge...?"
    "FAQ: What is the best format for rendering and exporting from After Effects?"
    By the way, keep in mind that you don't always need to render and export an intermediate movie to go from After Effects to Premiere Pro. There are other ways to move data back and forth between these applications, including Dynamic Link. Which is best depends on the specific circumstance. See "Working with Premiere Pro and After Effects".

  • "Option's value is unacceptab​le" while configurin​g the sync settings for Outlook

    Hello
    I was wondering if someone could please help me with this error message:
    "Option's value is unacceptable. Please check option properties"
    I receive this message when trying to configure synchronization settings for Microsoft Outlook 2007 in Desktop Manager 5.0.1.
    It does not matter whether I select Calendar, MemoPad, Address book or Tasks I get this error message.
    I am aware that there is a BTSC article on this problem which simply states the IMAP Profile is corrupt. I have only had this problem since moving to Windows 7 from Vista. When moving to 7 I copied across my PST files. Outlook reads them fine but DM is throwing a hissy fit. I used the Microsoft Outlook PST repair tool and that fixed some errors in the file but DM still wouldn’t read it. I have also imported the PST file again into Outlook but no joy there.
    Interestingly I have also created a brand new PST file in outlook and DM still gave me the error message. I don’t see how a brand spanking new PST can be corrupt. This leads me to believe my current PSTs are OK and DM is the problem.
    I have tried uninstalling, restarting, and reinstalling DM and have also tried deleting the RIM folder in the roaming folder in AppData to no avail.
    I have Googled this issue and came across a few posts in this forum but couldn’t find anything that helped.
    If anyone has ANY suggestions that would be great. My calendars work fine on my computer through Outlook, the problem is without being able to sync them they are slowly getting more and more different!
    Thanks
    Cameron
    Solved!
    Go to Solution.

    What saddens me is that this problem still exists after 3-5 years of this problem first being introduced.  I have tried the above and several other options posted on BB Forum, all to no avail.  I have being enduring the inability to sync my BB and life together for nearly a year now.  Talk about frustration and aggravation in tryng to sync my Outlook and BB calendars manually.  I even went and upgraded my BB Curve 8330 to a BB Curve 9330, only to have the same problems when syncing.   
    But today I googled the internet once again to finally find the post that had the answers and resolved my issues! A TREMENDOUS THANK YOU to Matt Seitz and his live journal entry at http://seitz.livejournal.com/3593.html. 
    The following is from his post:
    Blackberry sync with Outlook fails if no mail account is configured
    It surprises me how software that is published by and widely used by major corporations can be so badly written.
    I recently tried installing Microsoft Outlook and RIM Blackberry Desktop Manager so that I could sync my Blackberry with my PC.  When I tried to configure the Blackberry Desktop Manager to sync with Outlook, I received a cryptic "Option's value is unacceptable" error message.  It would have been nice if the software told me which option, what the value was, and why that value was unacceptable. 
    After much searching, I finally came across an article from RIM that explained this was because my Outlook e'mail (MAPI) profile was invalid.  That was probably because I hadn't configured Outlook to access e'mail.  I use Yahoo! Mail's web (HTTP) interface and didn't want to use Outlook (or any other POP client) to access my mail.
    But apparently Desktop Manager requires that Outlook be configured with an email account, even if I don't plan to access email via Outlook.  So, I dutifully added my Yahoo Mail account to Outlook, and simply told Outlook to never access it.
    But that wasn't good enough.  I then received an error from Outlook:  "The operation failed. An object could not be found."  Once again, the error is cryptic.  What operation failed?  Which object was not found?
    A Microsoft article explained that the only cure for this error was to configure a whole new user profile in Outlook.  I did that, and finally my Blackberry would sync with Outlook.
    After creating a new user and linking it to an email, I too was able to finally sync my BB 8330 and my BB 9330 with Outlook.  Hallelujuh!!!

  • Harms settings for asus p9x79 - ?

    Not sure if harm will see this but any to all : is there somewere with all of harms bios settings for his over clock? I did find this one: http://ppbm7.com/index.php/final-results?showall=&limitstart= but it only got a few of the settings - its just I got a asus p9x79 pro and a 3930k similar to him and I am finding the OCing a bit tricky - just would be nice to reference somone that has done it.
    I am most of the way there - can get 4.9 ghz out of it in auto tune but for some reason the auto tune seems to set my RAM down from 1600mhz to about 1300mhz to do it?! A bit bizzare - I did try to set stronger settings in the digi + section but if I press auto tune after applying changes all I get is the CPU auto tune sequence of restarting etc. and at teh end my RAM is about 1300mhz and the CPU 4.7 / 4.9 (different each time I try it) :S . Just would of been nice to get a OC of my RAM as well as the CPU anyway I will be checking this part with asus if they ever answer (didnt get much luck with them last time I tried them).
    I have also started manualyOCing and can get about 4.7 on the CPU but the RAM is more tricky as its 1600mhz base...possibly the asus auto tune does not change ratings? tnx.

    Bill : yes but some programs stress the CPU at 100 % but the temperature can be more than 10 C different I have seen intel burn seems to do something crazy harsh but fluctuates - deffinatly the harshes tester at the exact cores very high and above I guess etc...
    And yes I use HWmonitor : http://www.cpuid.com/softwares/hwmonitor.html and Real temp but they appear to show pretty much the same temps : http://www.techpowerup.com/realtemp/
    AIDA64 stress test is only getting my cores to 61 C :O by the way!
    What temperatures are you getting Harm or did you get before?
    Just out of interest here are my digi+ settings :
    I was thinking I could get temps down with it but its not stable if I lower some of these settings...

  • Error while adding a connector for SSL..help!!!

    i'm getting this error when i added a connector for SSL and restarted tomcat
    my connector tag is
    <Connector keystorePass="kalima" scheme="https" port="8443" sslProtocol="TLS" redirectPort="-1" enableLookups="true" keystoreFile="Mykeystore" protocol="TLS" keystore="C:\Documents and Settings\santhoshyma\Mykeystore" clientauth="false" algorithm="SunX509" keypass="changeit" secure="true" keytype="JKS">
          <Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory" keystorePass="kalima" keystoreFile="C:\SSLTest\Mykeystore"/>
        </Connector>
    LifecycleException:  Protocol handler instantiation failed: java.lang.NullPointe
    rException
            at org.apache.coyote.tomcat5.CoyoteConnector.initialize(CoyoteConnector.
    java:1368)
            at org.apache.catalina.core.StandardService.initialize(StandardService.j
    ava:609)
            at org.apache.catalina.core.StandardServer.initialize(StandardServer.jav
    a:2384)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:507)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:528)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:250)
            at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:424)

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

Maybe you are looking for

  • Help, I am about to pull my hair out, can't get into a locked drive and Time Machine problem

    I've screwed everything up, I think.  I had Time Machine doing backups to an external 500Gig drive and somehow it got locked.  I went into Get Info to try and change the access but it won't allow me.  On top of this problem, my original drive died an

  • How can I use my MBP's(late 2008) display as a secondary screen for MCP retina display?

    I've got my new MBP retina dispaly and I would like to use my old MBP as a secondary display. Is there any way to do this without installing different types of software like ScreenRecycler? I tried to connect the only cable I have which is an HDMI to

  • Connecting Canon MG5350 to MacBook with WLAN

    Hello! I just bought a Canon MG5350 and I tried to connect it with my MacBook which runs in iOS 10.6.8, using the wireless network. During the last step of the instalation, I am getting the message: no printer is dectetable. I checked the WLAN settin

  • IPhoto to PSE 11

    Starting up, how do I import images (in folders and albums) from iPhoto to PSE 11 without creating a chaos? Should I un-install iPhoto afterwards? FH-elementary

  • Current item Background Color

    Hello Friends, I am facing some problem in changing the bachgroud color of the selected field in block, Basically i want to make visible the current field in a record,not the enire record but just the current item. thanks to all;