RemoteApp on server 2008 works on mobile not external at home

We have Windows Server 2008 R2 with Terminal Services installed and remoteapp, internally everyting works greate, when i am externally and i'm connecting with my iphone with Microsoft RDClient to our remoteapp services i will see all the remote apps en they
works fine. But when i am externally and i wil connect with a desktop or notebook with Windows 7 or 8 i can access the webaccess page and i can login but when i open a app then he cannot connect with RDP. very strange and i hope somebody can help me. so with
an iphone it works externally and with a desktop or notbook not.
We have a ssl certificate for our RemoteApp webaccess.
This certificate is added to our domain controller in DNS.
We have new linked A-Records for our domain, so we can access RemoteApp web access trough the internet.
Remote desktop gateway is installed with te RAP and CAP policy with the correct users and groups.
Licenses are installed for terminal server users.
Certificate is added to RemoteApp Manager.
Terminal server is member of RAS and IAS servers in active directory.
There is a rule in our firewall for remote access so ports are open.
I hope that i've added all the usefull information.
Sorry for my english, come from holland ;-)
Kind regards and thanks in advance,
Marijn Barendregt

HI
Seems to be a wrong configuration / Setup - For RDS to be available to internet, you need gateway and RD web
You need two Public IP address,
One for gateway and
Other for WebApp
Certificate :
You need SSL certificate installed on all RDS server with the public Domain Name
Your Domain Name should be public Domain like .com etc.
In AD,
Create additional Zone for your public Domain and Create a A record for all your services,
Try if you are able to access using new Domain name from internal
Ensure all the configuration you have Done on RDS are pointing to the new public domain and not local.
Network Configuration
You need to NAT Gateway Private IP with First Public IP and allow 443
NAT Web App server private IP with second public IP address allow 443
IF you are using TMG or UAG or ISA , Use web publishing
Connection and how it works
Once external user hits app portal, it will display the published application and then when user clicks on Application, the connection will redirect to gateway, so you need two IP in NAT.
HOpe you are clear
 

Similar Messages

  • "SQL Server 2008 Reporting Services does not support map report items"

    Hi,
    I am trying some new feature that are introduced in SQL Server 2008 R2 version. While I try to use "Map" control within it, it threw the following error:-
    "Error 1 The map, Map1, was removed from the report. SQL Server 2008 Reporting Services does not support map report items. "
    -Also, similar kind of error I am getting for "Indicator" control.

    Hi Tej,
    I think you get this error message when you are deploying a report to report server using BIDS, correct?  If not, please provide more details on your scenario :-)
    If I guessed correctly, then this message is a result of trying to deploy a map report (a SSRS 2008 R2 feature) to a non-R2 2008 report server.  When deploying a report of RDL2010 format to a non-R2 report server, BIDS will downgrade the file to RDL2008 format, so that the non-R2 report server can process it.  Any report elements using features not supported in RDL2008 will be dropped during this downgrade process.
    BIDS gets the server version from a report project property called TargetServerVersion:
    http://technet.microsoft.com/en-us/library/ee635898(SQL.105).aspx
    If your report server is indeed the 2008 R2 version, then the TargetServerVersion property should be set to "SQL Server 2008 R2 Reporting Services."  The project property page also has a "Auto Detect..." option if you are uncertain about the version of your report server.
    Hope this helps!
    Cheers,
    LawrenceThis posting is provided "AS IS" with no warranties, and confers no rights.

  • Adobe PDF iFilter SQL Server 2008 R2 Full Text not working

    Unable to get the SQL Server 2008 R2 to index PDF files for full-text searching.
    Environment: Windows 7 SP1 Enterprise 64-bit, SQL Server 2008 R2 Express SP3 64-bit, Adobe Reader 11.x
    Installed PDF iFilter 64 (11.0.01) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    Added its folder (C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\;) to the PC system Path variable. Rebooted PC.
    Confirmed SQL Server sees the Adobe PDF iFilter ..... SELECT * from sys.fulltext_document_types where document_type = '.pdf' 
    Inserted PDF files to my table (see below for CREATE statement).
    The SQLFT log says  ... Warning: No appropriate filter was found during full-text index population for table or indexed view '[TestDB].[dbo].[pdfifiltertable]' (table or indexed view ID '2105058535', database ID '7'), full-text key value '1'.
    Some columns of the row were not indexed.
    Installed other filters for Office. Added files of type DOC, XPS. Confirmed the search query works for those file types. So as such SQL Full-Text is enabled and working.
    Below my T-SQL commands:
    Exec sp_fulltext_service 'load_os_resources', 1
    Exec sp_fulltext_service 'verify_signature', 0
    Exec sp_fulltext_database 'enable'
    CREATE TABLE pdfifiltertable(
    PdfID INT IDENTITY NOT NULL,
    PdfFileName VARCHAR(MAX),
    Ext VARCHAR(10) ,
    PdfText VARBINARY(MAX),
    CONSTRAINT PK_PdfID PRIMARY KEY (PdfID)
    GO
    CREATE FULLTEXT CATALOG pdfCatalog AS DEFAULT
    GO
    CREATE FULLTEXT INDEX ON pdfifiltertable([PdfText] Type column [Ext]
    ) KEY INDEX PK_PdfID with change_tracking auto
    GO
    SELECT pdfFileName FROM pdfifiltertable WHERE CONTAINS(pdftext, 'payment')

    What edition are you using? Like is it SQL-Express or SQL-Standard etc.
    Adding files using C# desktop application.
    Tested in another PC SQL-Server Express 2008 with Windows 7 64-bit. Same issue.
    C# source code ... add a button called uploadPDF and a datagridview called datagridview to the form.
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace UploadPDF
    public partial class Form1 : Form
    #region Properties
    protected static string ConnectionString {
    get {return "Integrated Security=SSPI;database=Testdb;Data Source=localhost\\SQLEXPRESS;Workstation ID=localhost;";}
    protected static SqlConnection Connection {
    get {return new SqlConnection(ConnectionString);}
    protected DataTable pdfDataTable;
    #endregion
    public Form1()
    InitializeComponent();
    populateDataGrid();
    protected void populateDataGrid()
    SqlConnection con = Connection;
    con.Open();
    try
    pdfDataTable = new DataTable();
    SqlCommand cmd = new SqlCommand( "select * from pdfifiltertable", con);
    SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    adapter.Fill(pdfDataTable);
    dataGridView.DataSource = pdfDataTable;
    dataGridView.Columns[3].Visible = false;
    finally {
    con.Close();
    private void uploadPDF_Click(object sender, EventArgs e) {
    if (DialogResult.Cancel == fileOpenDialog.ShowDialog()) return;
    try {
    byte[] content = FileToByteArray(fileOpenDialog.FileName);
    uploadPDFBlob2DataBase(fileOpenDialog.FileName,content);
    populateDataGrid();
    } catch (Exception ex) {
    MessageBox.Show(ex.Message, "PDFiFilter11", MessageBoxButtons.OK, MessageBoxIcon.Error);
    public byte[] FileToByteArray(string _FileName) {
    byte[] pdfBuffer = null;
    try {
    System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
    System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);
    long TotalNumberOfBytes = new System.IO.FileInfo(_FileName).Length;
    pdfBuffer = _BinaryReader.ReadBytes((Int32)TotalNumberOfBytes);
    _FileStream.Close();
    _FileStream.Dispose();
    _BinaryReader.Close();
    } catch (Exception _Exception) {
    Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    return pdfBuffer;
    public void uploadPDFBlob2DataBase(String fName, byte[] content) {
    SqlConnection con = Connection;
    con.Open();
    String ext,filename;
    ext = Path.GetExtension(fName);
    filename = Path.GetFileName(fName);
    try {
    SqlCommand insert = new SqlCommand( "insert into pdfifiltertable ([PdfFileName],[Ext],[PdfText]) values ((@pdfFileName),(@extension),(@pdfcontent))", con);
    SqlParameter pdffilenameParameter = insert.Parameters.Add("@pdfFileName", SqlDbType.NText);
    pdffilenameParameter.Value = filename;
    pdffilenameParameter.Size = filename.Length;
    SqlParameter extParam = insert.Parameters.Add("@extension", SqlDbType.NVarChar);
    extParam.Value = ext;
    extParam.Size = ext.Length;
    SqlParameter pdfcontentParameter = insert.Parameters.Add("@pdfcontent", SqlDbType.Binary);
    pdfcontentParameter.Value = content;
    pdfcontentParameter.Size = content.Length;
    insert.ExecuteNonQuery();
    } finally {
    con.Close();
    } //class
    } //namespace

  • Windows Server 2008 R2 - You might not have permission to use this network resource. The request is not supported.

    Hello !
    I have a server with Windows Server 2008 R2 (AD, File Server, DNS Server and DHCP Server) that not access network share other Domain Controller.
    Well, is very crazy.
    I view network shares by network computers and devices,
    but not \\domain_controller or \\IP_domain_controller.
    I execute ping for succeed for all servers.
    Follow error bellow:

    irectory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       * Verifying that the local machine SRVMTZDC01, is a Directory Server. 
       Home Server = SRVMTZDC01
       * Connecting to directory service on server SRVMTZDC01.
       * Identified AD Forest. 
       Collecting AD specific global data 
       * Collecting site info.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=shcorp,DC=local,LDAP_SCOPE_SUBTREE,(objectCategory=ntDSSiteSettings),.......
       The previous call succeeded 
       Iterating through the sites 
       Looking at base site object: CN=NTDS Site Settings,CN=SAO,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=CWB,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=POA,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=RIO,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=VIX,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=SSA,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=FOR,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=BHZ,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=BSB,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=RCF,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       Looking at base site object: CN=NTDS Site Settings,CN=BEL,CN=Sites,CN=Configuration,DC=shcorp,DC=local
       Getting ISTG and options for the site
       * Identifying all servers.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=shcorp,DC=local,LDAP_SCOPE_SUBTREE,(objectClass=ntDSDsa),.......
       The previous call succeeded....
       The previous call succeeded
       Iterating through the list of servers 
       Getting information for the server CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC05,CN=Servers,CN=SAO,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC06,CN=Servers,CN=CWB,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC13,CN=Servers,CN=POA,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC07,CN=Servers,CN=RIO,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC08,CN=Servers,CN=VIX,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC09,CN=Servers,CN=SSA,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC12,CN=Servers,CN=FOR,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC04,CN=Servers,CN=BHZ,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVDC10,CN=Servers,CN=BSB,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVMTZDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=SRVRCFDC11,CN=Servers,CN=RCF,CN=Sites,CN=Configuration,DC=shcorp,DC=local 
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       * Identifying all NC cross-refs.
       * Found 12 DC(s). Testing 1 of them.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\SRVMTZDC01
          Starting test: Connectivity
             * Active Directory LDAP Services Check
             Determining IP4 connectivity 
             * Active Directory RPC Services Check
             ......................... SRVMTZDC01 passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\SRVMTZDC01
          Starting test: Advertising
             The DC SRVMTZDC01 is advertising itself as a DC and having a DS.
             The DC SRVMTZDC01 is advertising as an LDAP server
             The DC SRVMTZDC01 is advertising as having a writeable directory
             The DC SRVMTZDC01 is advertising as a Key Distribution Center
             Warning: SRVMTZDC01 is not advertising as a time server.
             The DS SRVMTZDC01 is advertising as a GC.
             ......................... SRVMTZDC01 failed test Advertising
          Test omitted by user request: CheckSecurityError
          Test omitted by user request: CutoffServers
          Starting test: FrsEvent
             * The File Replication Service Event log test 
             ......................... SRVMTZDC01 passed test FrsEvent
          Starting test: DFSREvent
             The DFS Replication Event Log. 
             Skip the test because the server is running FRS.
             ......................... SRVMTZDC01 passed test DFSREvent
          Starting test: SysVolCheck
             * The File Replication Service SYSVOL ready test 
             File Replication Service's SYSVOL is ready 
             ......................... SRVMTZDC01 passed test SysVolCheck
          Starting test: KccEvent
             * The KCC Event log test
             Found no KCC errors in "Directory Service" Event log in the last 15 minutes.
             ......................... SRVMTZDC01 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             Role Schema Owner = CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             Role Domain Owner = CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             Role PDC Owner = CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             Role Rid Owner = CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             Role Infrastructure Update Owner = CN=NTDS Settings,CN=SRVDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             ......................... SRVMTZDC01 passed test KnowsOfRoleHolders
          Starting test: MachineAccount
             Checking machine account for DC SRVMTZDC01 on DC SRVMTZDC01.
             * SPN found :LDAP/SRVMTZDC01.shcorp.local/shcorp.local
             * SPN found :LDAP/SRVMTZDC01.shcorp.local
             * SPN found :LDAP/SRVMTZDC01
             * SPN found :LDAP/SRVMTZDC01.shcorp.local/SHCORP
             * SPN found :LDAP/9956d321-332f-482c-855c-8bceee885bb6._msdcs.shcorp.local
             * SPN found :E3514235-4B06-11D1-AB04-00C04FC2DCD2/9956d321-332f-482c-855c-8bceee885bb6/shcorp.local
             * SPN found :HOST/SRVMTZDC01.shcorp.local/shcorp.local
             * SPN found :HOST/SRVMTZDC01.shcorp.local
             * SPN found :HOST/SRVMTZDC01
             * SPN found :HOST/SRVMTZDC01.shcorp.local/SHCORP
             * SPN found :GC/SRVMTZDC01.shcorp.local/shcorp.local
             ......................... SRVMTZDC01 passed test MachineAccount
          Starting test: NCSecDesc
             * Security Permissions check for all NC's on DC SRVMTZDC01.
             * Security Permissions Check for
               DC=ForestDnsZones,DC=shcorp,DC=local
                (NDNC,Version 3)
             * Security Permissions Check for
               DC=DomainDnsZones,DC=shcorp,DC=local
                (NDNC,Version 3)
             * Security Permissions Check for
               CN=Schema,CN=Configuration,DC=shcorp,DC=local
                (Schema,Version 3)
             * Security Permissions Check for
               CN=Configuration,DC=shcorp,DC=local
                (Configuration,Version 3)
             * Security Permissions Check for
               DC=shcorp,DC=local
                (Domain,Version 3)
             ......................... SRVMTZDC01 passed test NCSecDesc
          Starting test: NetLogons
             * Network Logons Privileges Check
             Verified share \\SRVMTZDC01\netlogon
             Verified share \\SRVMTZDC01\sysvol
             ......................... SRVMTZDC01 passed test NetLogons
          Starting test: ObjectsReplicated
             SRVMTZDC01 is in domain DC=shcorp,DC=local
             Checking for CN=SRVMTZDC01,OU=Domain Controllers,DC=shcorp,DC=local in domain DC=shcorp,DC=local on 1 servers
                Object is up-to-date on all servers.
             Checking for CN=NTDS Settings,CN=SRVMTZDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local in domain CN=Configuration,DC=shcorp,DC=local on 1 servers
                Object is up-to-date on all servers.
             ......................... SRVMTZDC01 passed test ObjectsReplicated
          Test omitted by user request: OutboundSecureChannels
          Starting test: Replications
             * Replications Check
             * Replication Latency Check
                DC=ForestDnsZones,DC=shcorp,DC=local
                   Latency information for 7 entries in the vector were ignored.
                      7 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC).  
                DC=DomainDnsZones,DC=shcorp,DC=local
                   Latency information for 7 entries in the vector were ignored.
                      7 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC).  
                CN=Schema,CN=Configuration,DC=shcorp,DC=local
                   Latency information for 7 entries in the vector were ignored.
                      7 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC).  
                CN=Configuration,DC=shcorp,DC=local
                   Latency information for 7 entries in the vector were ignored.
                      7 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC).  
                DC=shcorp,DC=local
                   Latency information for 7 entries in the vector were ignored.
                      7 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC).  
             ......................... SRVMTZDC01 passed test Replications
          Starting test: RidManager
             * Available RID Pool for the Domain is 14100 to 1073741823
             * SRVDC01.shcorp.local is the RID Master
             * DsBind with RID Master was successful
             * rIDAllocationPool is 11600 to 12099
             * rIDPreviousAllocationPool is 11600 to 12099
             * rIDNextRID: 11737
             ......................... SRVMTZDC01 passed test RidManager
          Starting test: Services
             * Checking Service: EventSystem
             * Checking Service: RpcSs
             * Checking Service: NTDS
             * Checking Service: DnsCache
             * Checking Service: NtFrs
             * Checking Service: IsmServ
             * Checking Service: kdc
             * Checking Service: SamSs
             * Checking Service: LanmanServer
             * Checking Service: LanmanWorkstation
             * Checking Service: w32time
             * Checking Service: NETLOGON
             ......................... SRVMTZDC01 passed test Services
          Starting test: SystemLog
             * The System Event log test
             An error event occurred.  EventID: 0x00000422
                Time Generated: 05/02/2014   12:55:01
                Event String:
                The processing of Group Policy failed. Windows attempted to read the file \\shcorp.local\SysVol\shcorp.local\Policies\{1A69D491-B88A-4F66-B294-4ABEC8C62886}\gpt.ini from a domain controller and was not successful. Group
    Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following: 
                a) Name Resolution/Network Connectivity to the current domain controller. 
                b) File Replication Service Latency (a file created on another domain controller has not replicated to the current domain controller). 
                c) The Distributed File System (DFS) client has been disabled.
             An error event occurred.  EventID: 0x00000422
                Time Generated: 05/02/2014   13:11:54
                Event String:
                The processing of Group Policy failed. Windows attempted to read the file \\shcorp.local\SysVol\shcorp.local\Policies\{1A69D491-B88A-4F66-B294-4ABEC8C62886}\gpt.ini from a domain controller and was not successful. Group
    Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following: 
                a) Name Resolution/Network Connectivity to the current domain controller. 
                b) File Replication Service Latency (a file created on another domain controller has not replicated to the current domain controller). 
                c) The Distributed File System (DFS) client has been disabled.
             A warning event occurred.  EventID: 0x80001083
                Time Generated: 05/02/2014   13:18:00
                Event String:
                TCP/IP failed to establish an outgoing connection because the selected local endpoint was recently used to connect to the same remote endpoint. This error typically occurs when outgoing connections are opened and closed
    at a high rate, causing all available local ports to be used and forcing TCP/IP to reuse a local port for an outgoing connection. To minimize the risk of data corruption, the TCP/IP standard requires a minimum time period to elapse between successive connections
    from a given local endpoint to a given remote endpoint.
             An error event occurred.  EventID: 0xC0002719
                Time Generated: 05/02/2014   13:20:41
                Event String:
                DCOM was unable to communicate with the computer 8.8.4.4 using any of the configured protocols.
             An error event occurred.  EventID: 0xC0002719
                Time Generated: 05/02/2014   13:21:03
                Event String:
                DCOM was unable to communicate with the computer 8.8.8.8 using any of the configured protocols.
             ......................... SRVMTZDC01 failed test SystemLog
          Test omitted by user request: Topology
          Test omitted by user request: VerifyEnterpriseReferences
          Starting test: VerifyReferences
             The system object reference (serverReference)
             CN=SRVMTZDC01,OU=Domain Controllers,DC=shcorp,DC=local and backlink on
             CN=SRVMTZDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
              are correct. 
             The system object reference (serverReferenceBL)
             CN=SRVMTZDC01,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=shcorp,DC=local
             and backlink on
             CN=NTDS Settings,CN=SRVMTZDC01,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=shcorp,DC=local
             are correct. 
             The system object reference (frsComputerReferenceBL)
             CN=SRVMTZDC01,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=shcorp,DC=local
             and backlink on CN=SRVMTZDC01,OU=Domain Controllers,DC=shcorp,DC=local
             are correct. 
             ......................... SRVMTZDC01 passed test VerifyReferences
          Test omitted by user request: VerifyReplicas
          Test omitted by user request: DNS
          Test omitted by user request: DNS
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : shcorp
          Starting test: CheckSDRefDom
             ......................... shcorp passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... shcorp passed test CrossRefValidation
       Running enterprise tests on : shcorp.local
          Test omitted by user request: DNS
          Test omitted by user request: DNS
          Starting test: LocatorCheck
             GC Name: \\SRVMTZDC01.shcorp.local
             Locator Flags: 0xe00031bc
             PDC Name: \\SRVDC01.shcorp.local
             Locator Flags: 0xe00033fd
             Time Server Name: \\SRVDC01.shcorp.local
             Locator Flags: 0xe00033fd
             Preferred Time Server Name: \\SRVDC01.shcorp.local
             Locator Flags: 0xe00033fd
             KDC Name: \\SRVMTZDC01.shcorp.local
             Locator Flags: 0xe00031bc
             ......................... shcorp.local passed test LocatorCheck
          Starting test: Intersite
             Skipping site SAO, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site Default-First-Site-Name, this site is outside the scope
             provided by the command line arguments provided. 
             Skipping site CWB, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site POA, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site RIO, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site VIX, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site SSA, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site FOR, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site BHZ, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site BSB, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site RCF, this site is outside the scope provided by the
             command line arguments provided. 
             Skipping site BEL, this site is outside the scope provided by the
             command line arguments provided. 
             ......................... shcorp.local passed test Intersite

  • Managed server now working: Error 404--Not Found

    Hi All,
    I am very new to this field and have just installed weblogic server 10.3.3.
    I have created an Admin server and a cluster of two Managed servers.
    Admin server is working and is opening in the UI console.
    When i am starting the Managed server, in the cmd console it is showing
    <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    but in UI it is showing as :
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    how to start Managed Weblogic server?
    TIA,
    Vishal

    Hi Sandeep,
    yes i m using http://host-name-of-Admin-Server:Port/console to check the status.
    i have clustered the two managed server.
    To start the Managed server i m using the command:
    startManagedWebLogic.cmd ms_1 http://localhost:7001
    and in the cmd console i am getting message as:
    <Mar 17, 2011 4:23:03 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogi
    c Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Mar 17, 2011 4:23:04 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Mar 17, 2011 4:23:04 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Mar 17, 2011 4:23:04 PM IST> <Notice> <LoggingService> <BEA-320400> <The log fi
    le C:\Admin\Middleware\user_projects\domains\base_domain\servers\ms_2\logs\ms_2.
    log will be rotated. Reopen the log file if tailing has stopped. This can happen
    on some platforms like Windows.>
    <Mar 17, 2011 4:23:04 PM IST> <Notice> <LoggingService> <BEA-320401> <The log fi
    le has been rotated to C:\Admin\Middleware\user_projects\domains\base_domain\ser
    vers\ms_2\logs\ms_2.log00001. Log messages will continue to be logged in C:\Admi
    n\Middleware\user_projects\domains\base_domain\servers\ms_2\logs\ms_2.log.>
    <Mar 17, 2011 4:23:04 PM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Admin\Middleware\user_projects\domains\base_domain\servers\ms_2\log
    s\ms_2.log is opened. All server side log events will be written to this file.>
    <Mar 17, 2011 4:23:06 PM IST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Mar 17, 2011 4:23:07 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Mar 17, 2011 4:23:07 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Mar 17, 2011 4:23:09 PM IST> <Notice> <Log Management> <BEA-170027> <The Server
    has established connection with the Domain level Diagnostic Service successfull
    y.>
    <Mar 17, 2011 4:23:09 PM IST> <Notice> <Cluster> <BEA-000138> <Listening for ann
    ouncements from cluster Cluster_1 on 239.192.0.0:8050.>
    <Mar 17, 2011 4:23:09 PM IST> <Notice> <Cluster> <BEA-000133> <Waiting to synchr
    onize with other running members of Cluster_1.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Cluster> <BEA-000142> <Trying to downloa
    d cluster JNDI tree from server ms_1.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Cluster> <BEA-000164> <Synchronized clus
    ter JNDI tree from server ms_1.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to ADMIN>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RESUMING>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Cluster> <BEA-000162> <Starting "async"
    replication service with remote cluster address "127.0.0.1">
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090171> <Loading the iden
    tity certificate and private key stored under the alias DemoIdentity from the jk
    s keystore file C:\Admin\Middleware\wlserver_10.3\server\lib\DemoIdentity.jks.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090169> <Loading trusted
    certificates from the jks keystore file C:\Admin\Middleware\wlserver_10.3\server
    \lib\DemoTrust.jks.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090169> <Loading trusted
    certificates from the jks keystore file C:\Admin\Middleware\jdk160_18\jre\lib\se
    curity\cacerts.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090898> <Ignoring the tru
    sted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O
    =T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificat
    e list raised a certificate parsing exception PKIX: Unsupported OID in the Algor
    ithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090898> <Ignoring the tru
    sted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O
    =T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificat
    e list raised a certificate parsing exception PKIX: Unsupported OID in the Algor
    ithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090898> <Ignoring the tru
    sted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The
    loading of the trusted certificate list raised a certificate parsing exception
    PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090898> <Ignoring the tru
    sted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.
    \,LTD.,C=JP". The loading of the trusted certificate list raised a certificate p
    arsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.84
    0.113549.1.1.11.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Security> <BEA-090898> <Ignoring the tru
    sted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading
    of the trusted certificate list raised a certificate parsing exception PKIX: Un
    supported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 10.174.4.84:7201 for protocols iiop, t3, CLUSTER-BROADCAST,
    ldap, snmp, http.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Server> <BEA-002613> <Channel "DefaultSe
    cure" is now listening on 10.174.4.84:7202 for protocols iiops, t3s, CLUSTER-BRO
    ADCAST-SECURE, ldaps, https.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[1
    ]" is now listening on 127.0.0.1:7201 for protocols iiop, t3, CLUSTER-BROADCAST,
    ldap, snmp, http.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <Server> <BEA-002613> <Channel "DefaultSe
    cure[1]" is now listening on 127.0.0.1:7202 for protocols iiops, t3s, CLUSTER-BR
    OADCAST-SECURE, ldaps, https.>
    <Mar 17, 2011 4:23:24 PM IST> <Notice> <WebLogicServer> <BEA-000332> <Started We
    bLogic Managed Server "ms_2" for domain "base_domain" running in Development Mod
    e>
    <Mar 17, 2011 4:23:26 PM IST> <Notice> <Cluster> <BEA-000102> <Joining cluster C
    luster_1 on 239.192.0.0:8050>
    <Mar 17, 2011 4:23:26 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RUNNING>
    <Mar 17, 2011 4:23:26 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>

  • Windows server 2008 r2 operating system not booting in normal mode after unstalled the virus gaurd

     Windows server 2008 r2 operating system is not booting in normal mode after i uninstalled the virus guard in the system. I tried to repair the system but repairing  option not available in server 2008. i can log in to the system only safe mode.
    Please help me to solve this issue as soon as possible .I do not have the any system backup with me .

    Hi,
    Regarding the issue here, please restart the computer and press F8 until you see the
    advanced boot options, select start windows normally, 
    if it starts with no problem, please check if you have the option boot from safe mode checked:
    run->type msconfig->tab boot->boot options, check if the
    safe boot is selected, if yes please uncheck it. Then restart the computer to check if this problem still exists.
    If the system needs repair, please take a look into the below WIKI article, and check the event viewer to see if any errors for further troubleshooting.:
    Windows Server 2008 Repair Steps for No Boot Issues
    http://social.technet.microsoft.com/wiki/contents/articles/4162.windows-server-2008-repair-steps-for-no-boot-issues.aspx
    Hope this helps
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Windows Server 2008 R2 Domain Controller NOT logging EventID 4740

    EventID 4740 (account lockout) is not being logged to the event viewer. When searching through the security log there are none to be found. Having accounts locked out and no logging is driving me nuts. Hope someone has run into this before. This is what
    i have checked thus far.
    >Windows Server 2008 R2 Domain Controller
    >Verified the following GPO settings are set and correct:
    >Computer Configuration\Windows Settings\Security Settings\Local Policies\Audit Policy\ all are set for Success & Failure
    >Computer Configuration\Windows Settings\Security Settings\Advanced Audit Configuration\Logon/Logoff) is set for Success and Failure
    >Powershell command Get-Eventlog -log Security -InstanceId 4740 returns no results which makes sense since there are no entries in the security log file.
    >No 4740 entries in the netlogon.log debug file
    AD and the LockoutStatus tool show the account is locked out but i still have nothing in the logs.
    Anyone have any ideas? From everything i can find online , it appears i have everything set properly.
    Thanks, Chico

    Hi Chico,
    I suggest you try to enable this group policy below:
    Computer Configuration\Windows Settings\Security Settings\Local Policies\Audit Policy\Audit account management
    More information for you:
    Missing 4740 EventID's
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/c9871d72-7439-46b5-98e6-a7fadfa6ff28/missing-4740-eventids?forum=winserversecurity
    If you have multiple Domain Controllers, check this event on other DCs, too.
    Please feel free to let us know if there are any further requirements.
    Best Regards,
    Amy Wang

  • Wnidows server 2008 R2-- Direct shutdown / not displaying taskbar or any icons on desktop

    Hi,
    I'm using windows server 2008 standard R2 trail version. My electrician to resolve some switch issue plugged out server pin, due to which server was shut down directly. Now when I restarted it normally its just showing a blank desktop without task-bar and
    icons, I tried running task manager but its showing error (Task Manager is Disabled by your Administrator). I tried logging in through safe mode but its automatically rebooting when i try doing so. My application is running fine on other clients. Not getting
    any solution. Please provide some genuine solution.

    Hi,
    This issue is mentioned in following article:
    "Task Manager has been disabled by your administrator" error message
    http://support.microsoft.com/kb/555480
    If you could enable Run with Win+R, try to add the registry keys with command line such as:
    REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f
    If you have any feedback on our support, please send to [email protected]

  • DM 3.1.1 with SQL Server 2008 . Extended Properties not imported .

    Hi
    I am using Data Modeler 3.1.1 with SQL Server 2008.
    I have a database where I have Extended Properties (MS_Description) for the tables and columns.
    I use the Import Data Dictionary option (database type SQL 2005) , and the extended properties are not being imported to the model.
    Is there anything else that I should do to have the descriptions imported?
    Regards,
    Jorge

    Hi Fernando
    That is what I need to do.
    Create a Model from an existing SQL Server database with the Import data Dictionary option , be able to modify tables structures, extended properties in the model, and then sync those changes with the database.
    So far I can't import the extended properties with DM 3.1.1. If you find a way , please let me know.
    Thanks,
    Jorge

  • Windows Server 2008 DC Migration or NOT?

    Greetings fellow Techies & Gurus....
    Currently I have a physical Box which is windows 2008 Server STD DC.  
    What is the best way to transfer the Users & all the necessary setting to Windows 2008 R2? I was thinking should I upgrade the STD to 2008r2 or should I install another Virtual Server which is Windows 2008R2 and make it a DC and let windows 2008 STD
    Server DC to populate its configuration and settings to New Windows Server 2008R2 DC.  afterwords to take the windows 2008 STD DC offline, and let the Windows 2008R2 Manage the Network.
    Can this be done? If yes.... is there are any documentation available I can go through the same 
    Basically I do not want the users to feel that there is a upgrade to migration going on and I do not want to interrupt the users as well.
    Your valuable insights are appreciated.
    Thanks
    Nilanga

    1) make sure you have at least _2_ domain controllers at any time.
    2) I think it is easier to promote an aditionnal dc, move the fsmo's and demote the old one. If needed you can re-ip teh new ones to take the ip's of the old ones
    3) yes, there are very nice procedures on how to do these things:
    http://technet.microsoft.com/en-us/library/cc731188(v=ws.10).aspx
    http://technet.microsoft.com/en-us/library/upgrade-domain-controllers-to-windows-server-2008-r2(v=ws.10).aspx
    MCP/MCSA/MCTS/MCITP

  • Server 2008 WSUS 3.0 not downloading updates

    Error calling [kernel32.dll]:CreateDirectory(\WAYNAS\Admin\WSUS\WsusContent\6F)
    That's the error I get when looking through the SoftwareDistribution.log. Doesn't just apply to the 6F directory, but to any directory it attempts
    to create.
    I've seen some solution for Server 2012 regarding it being a set as removable storage, however that fix doesn't apply to Server 2008: http://www.briantist.com/errors/server-2012-vmware-esxi-permissions-errors-removable-storage-auditing/
    It seems to Sync fine, just doesn't download the update files.
    The permissions for the directory on the nas drive are that NETWORK and Network Service have a full control.
    Any other suggestions would be appreciated,
    Thanks!

    Hi,
    Is your WSUS content locate under that path?
    Updated the content location in the database using the wsusutil.exe command
    WSUS: How to change the location where WSUS stores updates locally
    http://blogs.technet.com/b/sus/archive/2008/05/19/wsus-how-to-change-the-location-where-wsus-stores-updates-locally.aspx
    Used wsusutil.exe to execute a reset which forced content to be downloaded (wsusutil.exe reset)
    Managing WSUS 3.0 from the command line
    http://technet.microsoft.com/en-us/library/cc708604(v=WS.10).aspx
    Hope this helps.

  • Win Server 2008 R2 - FSRM is not able to view Office Word 2010 custom document properties

    Hi, 
    how to view custom document properties for office 2010 files on Win Server 2008 R2 - FSRM.
    Word 2003 custom document properties are reportable and also visible after: Right click on file/Properties/Custom
    Word 2010 there is no Custom menu after: Right click on file/Properties/Custom
    Any suggestion ?
    TH

    Hi Tomas,
    To view custom properties in Office 2010:
    1. Click the File tab.
    2. Click Info.
    3. Click Properties, and then select Advanced Properties
    4. Click the Custom tab
    Regarding this point, the following article can be referred to for more information.
    View or change the properties for an Office file
    http://office.microsoft.com/en-in/word-help/view-or-change-the-properties-for-an-office-file-HA010354245.aspx
    In addition, for this is more related to Office, in order to get better, we can also ask for suggestions in the following forum.
    Office Forum
    http://social.technet.microsoft.com/Forums/office/en-US/home
    Best regards,
    Frank Shen

  • My Iphone isnt working and its not showing the home screen after trying yesterday to download OS5, please help me

    hi
    yesterday i tryed to sownload the new software OS5 for my iPhone and after waiting the proccess to end, suddenly a message appeares saying the iphone wont restore!
    after that the iphone stop working at all and not showing the home screen to me !
    just it works by showiin the apple logo then a loading process that works for ever till the barrerry ends.
    so please help meand can i fix it here or i have to go to a maintinace shop
    thank you

    Connect the charger and let it charge for at least 30 minutes before you try to turn it on. Then let it charge  untill full. The iPhone (or iPad) need at least a little charge before you can turn it on.

  • Event ID 1001 Server 2008 R2 Windows Update not working

    Windows update fails with error code 80072EFE.  I have ran rootkiller and malicious software removal tool from microsoft.  Still no luck.

    Hi,
    I suggest trying the following steps to troubleshoot this issue:
    Step 1 Reset proxy (for LAN connection)
    =========================
    Remove invalid characters from the proxy exception list and then clear the proxy cache.
    1. Open Internet Explorer.
    2. In the Tools menu, select Internet Options.
    3. Click on the Connections tab.
    4. Click on the LAN Settings.
    5. Clear the entries in "Use automatic configuration script" and uncheck "Automatically detect settings."
    6. Click on the Advanced button.
    7. Please delete any entry in the Exceptions section,
    8. Click OK, and return to the previous window. Uncheck "Use Proxy Server for your LAN", and click OK to accept the changes.
    9. Quit Internet Explorer.
    Next, clear your proxy cache.
    Step 2 Reset Proxy Cache
    ================
    1. Click the Start Button, click "All programs", and click "Accessories".
    2. Right-click "Command Prompt", and click "Run as administrator". If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
    3. Type "netsh winhttp reset proxy" (without quotes) at the command prompt, and press Enter.
    Step 3 Clean Boot
    ===========
    1. Click the Start Button, type "msconfig" in the search bar and press Enter.
    Note: Please click the Continue if the "User Account Control" window pops up.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click "Disable All" (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    Then, restart the computer. When the "System Configuration Utility" window appears, please check the "Don't show this message or launch the System"
    4. Test if we can update the system in Clean Boot.
    Note 1: Temporarily disabling the Startup Group only prevents the startup programs from loading at startup. This shouldn't affect the system or other programs. We may still manually
    run these programs later.
    Note 2: We can check on Normal Startup in the General tab to roll back to Normal Mode after we get this issue resolved.
    If the issue persists, please help collect the following files:
    WindowsUpdate.log
    ============
    1. Click Start, type: %windir% and press OK.
    2. Locate a file named "WindowsUpdate.log".
    System Information
    ============
    1. Click Start, type in "MSINFO32" and press Enter to start System Information.
    2. On the popup window, on the menu bar, click File, and click Save to save it as an NFO file, such as system.nfo.
    Please upload the above files to
    https://sftus.one.microsoft.com/choosetransfer.aspx?key=1681d4f9-7a0d-4b8e-bd8e-6d56f211397b
    Password: a{BWaSOC!1CyX3Q
    Tim Quan

  • Just purchased Xcelsius Server 2008 and it will not open

    I have been using the xcelsius 2008 server trial edition and decided to purchase the full product.  After I paid, I received a product key and a link to download.  When I open the trial version, it has a link to enter a product key, so I entered the key I was given.  I got a message that this key was invalid.
    So I clicked the download link and downladed a new file.  It downloaded and installed with no problems (including accepting the key I was given).  But now, when I try to open the application, the Xcelsius logo comes up, but then it immediately pops up a Windows message bos that says "Xcelsius has stopped working" and shuts down.
    There are now two shortcuts and two folders for Xcelsius.  I tried both the old and the new with the same result.
    I am using Windows Vista Home Premium 64 bit.  Can anybody help?

    Hi
    Try and run it from the start menu as administrator.
    Also look at the size of your RAM, anything under 4G, may result in possible instability.
    If it does not work I would suggest, unstall both instances.
    Restart the machine and install the working application.
    Regards
    Fazal

Maybe you are looking for

  • Itunes seems to have lost the ability to play purchased videos

    Before posting here, I've searched all over the place for a solution to this problem, I found many people who have very similar issues, some solved them, but their solutions haven't worked for me, others with problems closer to how'd I'd describe min

  • What is the best method for updating Bios for 8.1 on GT70 2OD

    Hey, I've been getting a bunch of different BSODs and its been recommended I update my bios because I am running win 8.1 Im just a little confused with which method would be best to update the bios. The EFI bios utility method on the PDF looks easy e

  • ISE Integration to SAP Afaria MDM

    Hi Experts, Good Day! Anybody here already have a chance to integrate ISE 1.2 to SAP Afaria MDM? Can you give me some advise because I always have some issues about it. Thank you. niks

  • Shopping cart missing

    Hello All, We have got an issue with one of the shopping carts. After sourcing, shopping cart did not flow to requestor. I have checked in SWI6, monitor shopping cart, BBP_PD and SWI1; it show as "cart with requestor". I also checked in users queue i

  • If my sound doesnt work on my iphone 4 will apple replace it?

    help me!!