Maximum size video upload settings in web config file

Hi, i am providing video support in my application, whereas i need to provide support to upload video without any size limit, say for example atleast 1GB video should be uploaded and played via html5 and iframe tag. I have made some changes in web config
file like maxrequestlength attribute and maxallowedcontentlength attribute set to support maximum of 1 GB video. But it does not affect my application in anyway. Any suggestions please??

This forum supports setup of the .NET Framework itself.
As you question concerns configuration of a web application, I recommend that you ask here:
http://forums.asp.net/26.aspx/1?Configuration+and+Deployment

Similar Messages

  • Maximum size of upload file using Cross Domain Library

    Hi All 
    I need to know what is the maximum size of file that I can upload using Cross Domain Library from my Provider hosted app. I know that in msdn it is written that usign REST call we can upload upto 2GB but I have doubts if it is true with Cross domain library
    REST Calls. Please suggest.
     spExecutor.executeAsync(
                                   url: fileCollectionEndpoint,
                                   method: "POST",
                                   contentType: "application/json;odata=verbose",
                                   body: filedata,
                                   binaryStringRequestBody: true,
                                   headers: { "X-RequestDigest": $("#__REQUESTDIGEST").val(), "accept": "application/json;odata=verbose" ........
    And Can I pass ArrayBuffer directly or I need to pass only binary string ?
    Thanks in Advance 

    Hi,
    According to your post, my understanding is that you want to know the Maximum size of upload file using Cross Domain Library.
    Per my knowledge, you can upload files up to 2 GB with the REST API. 
    You can refer to:
    How to: Upload a file by using the REST API and jQuery
    In addition, you can pass ArrayBuffer directly. Please refer to:
    FileCollection methods
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • The setting ExternalProxy in the Web.Config file was not valid.

    Since installing Exchange 2010 SP1 (Upgrade from RTM) I get this in the event viewer.
    The setting ExternalProxy in the Web.Config file was not valid. The previous value was null and has been changed to .
    Any ideas what to check?

    I'm also getting a number of these errors on Exchange 2010 SP1 RU1, the settings that I get notified include (the values have been changed to a number of diferent values):
    ExternalProxy
    BootstrapMailDeliveryDelay
    MobileUpdateInformationURL
    BootstrapCABForWM61HostingURL
    FullServerVersion
    ADCacheMaxOrgCount
    ADCacheExpirationTimeout
    MaxDocumentDataSize
    MaxDocumentLibrarySearchResults
    MaxGALSearchResults
    BadItemEmailToText
    BadItemIncludeEmailToText
    BadItemIncludeStackTrace
    MaxClientSentBadItems
    MailboxSearchTimeoutNoContentIndexing
    MailboxSearchTimeout
    MaxMailboxSearchResults
    MaxRequestsQueued
    MaxWorkerThreadsPerProc
    MaxCollectionsToLog
    ProxyConnectionPoolConnectionLimit
    ProxyHandlerShortTimeout
    ProxyHandlerLongTimeout
    BackOffErrorWindow
    BackOffTimeOut
    BackOffThreshold
    ProxyVirtualDirectory
    BlockLegacyMailboxes
    BlockNewMailboxes
    SchemaValidate
    SchemaDirectory
    SyncLogDirectory
    SyncLogEnabled
    DisableCaching
    DeviceClassCacheADCleanupInterval
    DeviceClassPerOrgMaxADCount
    DeviceClassCachePerOrgRefreshInterval
    DeviceClassCacheMaxADUploadCount
    DeviceClassCacheMaxStartDelay
    MaxWindowSize
    MaxRetrievedItems
    EventQueuePollingInterval
    ADCacheRefreshInterval
    MaxSizeOfMailboxLog
    NumOfQueuedMailboxLogEntries
    MaxNumOfFolders
    Can these be resolved in a similar manner. Some additional information would be great (as sjoegarrett I can also ignore them, but would prefer if these could be eliminated).

  • Search for a specific string in web.config file

    Hi
    Is there a way we can search a specific word in web.config using powershell.
    I have an entry of "user name" in the connection string. I want to find what the user name is and whether its a correct user name or not based on the criteria set in the script.
    i believe its a simple matter of if statement but due to connection string i am unable to do this.
    this is my connection string from web.config
        <connectionStrings>
        <add name="Membership" connectionString="Data Source=testdb;Initial Catalog=test;user   
        name=testUser;password=123456;MultipleActiveResultSets=true" 
        providerName="System.Data.SqlClient"/>
        </connectionStrings>
    My criteria is. if user name -eq testUser write-host "correct user name" else "user name is incorrect"
    This is the script which i am using
        $webConfig = 'C:\Users\test\web.config'
        $cfg = [xml](gc $webConfig)
    Not sure how the if statement will work in searching the document and applying critera

    Here is the full web.config file. i just modified the credentials.
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection,
    EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
        <sectionGroup name="common">
          <section name="logging" type="Common.Logging.ConfigurationSectionHandler,
    Common.Logging" />
        </sectionGroup>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468
    -->
      </configSections>
      <connectionStrings>
        <add name="Membership" connectionString="Data Source=TestDB;Initial Catalog=Test;user
    id=TestUser;password=1234556;MultipleActiveResultSets=true" providerName="System.Data.SqlClient" />
        <add name="Administrator" connectionString="Data Source=TestDB;Initial Catalog=Test;user
    id=TestUser;password=1234556;MultipleActiveResultSets=true" providerName="System.Data.SqlClient" />
      </connectionStrings>
       <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
      </startup>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory,
    EntityFramework" />
      </entityFramework>
      <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    throwExceptions="true">
      <targets>
           <target name="f1" xsi:type="File" fileName="test.log.txt"
    layout="${threadname} ${longdate}
         ${callsite} ${logger}[${level}] ${message}" />
           <target name="console" xsi:type="Console" layout="${threadname}
    ${longdate} ${callsite}
         ${logger}[${level}] ${message}" />
         </targets>
     <rules>
          <!--<logger name="Quartz.*" level="Warn" />-->
          <logger name="*" writeTo="f1" minlevel="Info" />
          <logger name="*" writeTo="console" minlevel="Debug"
    />
        </rules>
      </nlog>
      <common>
        <logging>
          <factoryAdapter type="Common.Logging.NLog.NLogLoggerFactoryAdapter, Common.Logging.NLog20">
            <arg key="configType" value="INLINE" />
          </factoryAdapter>
        </logging>
      </common>
      <appSettings>
       <add key="V3Import.Import.TestMode" value="true" />
        <add key="MSMQ.QueueName" value="TestQueue" />
        <add key="MSMQ.ErrorQueueName" value="TestQueue" />
        <add key="AdminSignaturePath" value="C:\user\test\myfolder" />
        <add key="SyncQueueJobCRON" value="0 0/2 * 1/1 * ? *" />
      </appSettings>
      <system.web>
        <authentication mode="Forms">
          <forms loginUrl="~/Account/Login" timeout="5000000" />
        </authentication>
        <membership defaultProvider="AspNetMembershipProvider">
          <providers>
            <add connectionStringName="Membership" enablePasswordRetrieval="false"
    enablePasswordReset="false" requiresQuestionAndAnswer="false" applicationName="/Test" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6"
    minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" passwordStrengthRegularExpression="" name="AspNetMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0,
    Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </membership>
        <profile>
          <providers>
            <add name="AspNetProfileProvider" connectionStringName="Membership"
    applicationName="/Test" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </profile>
        <roleManager>
          <providers>
            <add name="AspNetRoleProvider" connectionStringName="Membership"
    applicationName="/Test" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </roleManager>
      </system.web>
      <system.net>
      </system.net>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="dotless.Core" publicKeyToken="96b446c9e63eae34"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-1.3.1.0" newVersion="1.3.1.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"
    />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    </configuration>

  • How to address the folder out of web site place in web.config file?

    Hi to all,
    I have a website. I want that some folder place out of web site location,then address their in web.config file.
    but don't how to do?
    please guide me.
    Thanks ;)
    Good luck!

    Hi Bahare Aghabarari,
    Welcome to MSDN forums.
    This is a forum for questions about Visual C# language. For ASP.NET questions, please post in
    ASP.NET forums. You can get more valuable replies there.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need to append the assembly entry in web.config file while installing NuGet

    Hi,
    Consider that I need to create three NuGets. Second and third are dependents for first one. Each one has its own web.config file, which file content is same except one tag's value. While I'm installing the first NuGet, it will install the second and third too
    which is fine. The NuGets are installing one by one. But the issue is while I'm installing the NuGet in an ASP.NET project, the web.cofig file gets replace with one another that means the last NuGet's web.config file is only remains at last. But I need to
    append that tag value one by one. Is there any possibilities to create NuGets in that way? Please help me as soon as possible. Thanks in advance.
    I need this...
    <assemblies>
    <add assembly="Abc.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
    <add assembly="Def.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
    <add assembly="Ghi.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
    </assemblies>
    But I got this...
    <assemblies>
    <add assembly="Ghi.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
    </assemblies>

    Hi mathikp,
    One solution is to use the DTE object model to find the ASP.NET project, enumerate all the project items in the project to find the Web.config file. Then change the content by your self. This will be done after you install the Nuget package in the project.
    https://msdn.microsoft.com/en-us/library/envdte.project.projectitems.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Web.config file

    I purchased a SSL certificate - the company who I purchased it through said I had to do a web.config file and a redirect file - can anyone help me - please?

    I did it was godaddy.com and they told me I needed the web.config file - but if I understand it I think I just need to point the site to the https - and I thought I could do that in dreamweaver under site management - but it didn't work.  In other words, https://www.mymomentumservices.com is on the web and you can get to it if you key it in - but the site was originally set-up http://www.mymomentumservices.com - hope that make sense - thank you for any help you can give me.

  • Maximum size of a parameter of web service

    Hello,
    Suppose we have the folowing WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions .....>
       <wsdl:types>
          <xsd:schema .....>
            <xsd:element name="myMethod" >
               <xsd:complexType>
                 <xsd:sequence>                                            
                    <xsd:element name="myParameter" type="types:MyParameterType"/>
                 </xsd:sequence>
               </xsd:complexType>
            </xsd:element>
            <xsd:element name="myMethodResponse">
            </xsd:element>                         
         </xsd:schema>
       </wsdl:types>
       <wsdl:message name="MyMethodRequestMessage">
            <wsdl:part name="parameters" element="wsdltypes:myMethod"/>
       </wsdl:message>
       <wsdl:message name="MyMethodResponseMessage">
            <wsdl:part name="parameters" element="wsdltypes:myMethodResponse"/>
       </wsdl:message>
       <wsdl:portType      name="MyPortType">
           <wsdl:operation name="myMethod">
             <wsdl:input  name="myMethodRequest" message="tns:MyMethodRequestMessage"/>
             <wsdl:output name="myMethodResponse" message="tns:MyMethodResponseMessage"/>
            </wsdl:operation>
       </wsdl:portType>
    <wsdl:definitions>What is the maximum size of "myParameter" U advice me to not to exeed ?

    Hi,
    Based on one of the documents from SAP,
    When you are creating dimensions for your application set you should be aware of the following maximums for any one dimension.
    u2022 The maximum number of fields in a table (a dimension = 1 table) is 1024.
    u2022 The maximum record size is 8064 bytes (a record = 1 row in a table)
    The two maximums above relate to the underlying SQL database in which BPC information and data is stored. They need further explanation as to how they relate to a BPC dimension. In BPC a field equals a property. So you can have up to 1024 properties in a dimension. One other factor that has an impact on the actual number of properties you can have in a dimension is the number of levels you have defined. SQL Server creates a set of properties for each level within the dimension. For example, you have 10 properties and three levels in your dimension, your total number of fields is 30. The second limiting factor is the size of the record. To determine record size you have to figure out the number of bytes (a byte equals a character) in each level. Since levels are repeated you only need to figure out the number of bytes in the first level and then multiply that number by the number of levels. To come up with the total number of bytes for a level you simply add up the field size for each field and multiply it by 2 (1 character = 2 bytes).
    Hope this gives you some idea.

  • HttpBinding not working when HttpHandler tag is present in web.config file

    Hi,
    I tried to add a WCF service in WCF Test Client using HttpBinding. But I couldn't add the service. I got the below error.
    There was an error downloading 'http://localhost/Services/PostOffice.svc/_vti_bin/ListData.svc/$metadata'.
    The request failed with an empty response.
    Metadata contains a reference that cannot be resolved: 'http://localhost/Services/PostOffice.svc'.
    The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error.
    If the service is defined in the current solution, try building the solution and adding the service reference again.
    I removed the below code in the Web.Config, later I was able to add the WCF service to the WCF test client.
    <httpHandlers>
    <add type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" path="Telerik.ReportViewer.axd" verb="*" validate="true" />
    </httpHandlers>
    I'm not sure with the above code. Could you please let me what is the reason behind it and what is the use of above code and if I remove it how does it affect my application.
    Thanks in advance.
    Sandeep

    Hi Sandeep Pinniti,
    Please try to add the following config in your config file:
    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    The validateIntegratedModeConfiguration="false" will allow us to keep our httpHandlers section populated without throwing an error. And I have tested in my side,
    it works fine.
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Video Sharing - Videos upload issue to Vimeo because files are now too large post iOS7.

    Videos taken prior to iOS7 update uploaded without issues to Vimeo.  Vidoes taken after iOS7 update will not upload because videos are too large.  I am videoing the same type of activities for the same duration post iOS7 as I was pre-iOS7.  What has changed with iOS7 that is causing my videos to be saved as larger files?  This is a HUGE issue for what I do!  HELP PLEASE!!

    You're going to have to edit them on a computer before uploading them, unless you can convince Vimeo to change their limits.

  • How to source .Xdefaults' color settings from other config files?

    I'd like to reuse the colors I've setup in my .Xdefaults in other config files, I'm not sure if I could somehow source these from other scripts, or if I should centralize them another way...
    Any pointers ?
    cheers

    Knute wrote:
    I don't have a clue but have you checked the archwiki?
    http://wiki.archlinux.org/index.php/Xdefaults
    sure...
    Knute wrote:Though, in partial answer to your question, I would suggest that perhaps, those programs that use the terminal color notations could be affected by *colorX (where X is a number between 0 and 15).
    Unfortunately that doesn't seem to be working...
    Knute wrote:The other option, is to maybe set theose colors up in a different script that just exports the names, and then use those variables?
    Gues that's what I'll do...

  • Set max size for uploads through the media browser

    Add this to web.config file inside the system.web tag
    <httpRuntime maxRequestLength = "nnn" />
    where nnn is max KB that can be uploaded, default is 4096(4MB)
    More settings here
    http://msdn2.microsoft.com/en-us/library/e1f13641.aspx

    Hi ,
    If you are looking to limit the number of characters that can be entered to the field from GUI then a global side effect and rule combination will help you achieve it . It would be something like this :
    This is done by leveraging Side Effects under Rules - Rules Activation Conditions. You also need to set the Rule as Global for this to be effective across the system.
    In there the following has to be set:
    <$dDocTitle:maxLength=80$>
    <$dDocName:maxLength =50$>
    Set the above side effect in the rules and corresponding Profile need to refer it for being able to limit the number of characters that can be entered for Title and Content ID.
    Custom metadata too can be controlled in the same way . For example, if metadata "Version" need to limit the number of characters being entered then "Side Effects" to be set is as follows :
    <$xVersion:maxLength=50$>
    NB - the maxLength parameter is not supported for fields of type Memo. It will only take effect on standard text fields.
    Thanks,
    Srinath

  • Videos uploaded by users

    Hello,
    I'm trying to find a solution to my problem, any assistance would be greatly appreciated as I've exhausted all my limited knowledge and reading materials.
    I am looking for a way to allow users to submit video files, likely in excess of 200MB.  As far as I can tell from what I have read, PHP is limited to 2MB and if PHP isn't my web hosting service is so either way I'm in trouble.  I do not want the users to have access to the videos or even see that there are other videos in the upload folder; any program that I find that seems like it may allow for larger files is a file sharing program and outside the realm of what I am looking for.
    Is there programming that I could do which would link directly to my FTP site, but only in a one way capacity for the user?  I'm building the site in Dreamweaver, but could move this discussion to the Flash forum if that would be a more intelligent place to go.
    I have no problem purchasing books or other training materials if anyone knows of such materials that address this question.  Free information is always good too, but given the nature of this inquiry I imagine the solution, if it exists, is rather involved.  
    Again thank you for your time.

    The webassist software is only for complete uploads/downloads as far as I am aware, but you should check with them.
    There is a way to 'break-up' files into smaller pieces, but this would mean uploading 100 separate files, which is not really an option.
    Definitely check with your server provider, and if they are not willing to increase the upload default limit (don't forget there is a bandwidth issue here also), then check with other server providers as some do specialize in allowing large file sizes, especially for video uploads/downloads.
    As for file sharing providers then choose one that offers 'authorized users only', (sorry, no recommendations). An alternative would be to allow the uploads via your normal ftp log-in password  (you could use the webassist software for this), to a specific folder as this would be transparent to your user, but there are some serious security issues to overcome with this method.
    PZ

  • How to save a Pages document to upload to the web

    I have created a document in Pages '08.  It was designed for print (11" x 17") and 2 pages long.  I saved it both as a pdf and as a png file but the file size is too large to put on our website (maximum 10 mb).  How can I save this file with a reduced file size to upload to our web page?

    I am looking in Pages '09, it is possible that is somewhere else in Pages '08 or was only introduced in Pages '09. Look through all of your Menus and in your Pages '08 User Guide.
    If it is not there, follow through the other advice which is crop and reduce your images to 72 dpi resolution, preferably as .jpegs, or replace where possible with .pdf vectors both of which form smaller graphics files.
    The best solution would be to reconstruct your document asa proper web page so the parts load individually or make a link to the larger .pdf file for people to download.
    Peter

  • Error pages using web.config

    I have a site which is set up in 2 main sections. I have a
    custom error page working for one half of the site but need to
    specify a different error page for the other half of the site.
    For example, any errors which occur while on pages in the
    /html folder show one error page.
    Any errors which occur while on pages in the /htmlshop should
    show another error page.
    Anyone know a way of achieving this?
    Many thanks.

    Just place a separate web.config file containing only the
    tailored
    customError sections desired for each of the directories,
    they work like CSS
    so the settings defined in the sub folders config files will
    override any
    defined in the root config file.
    "Sean022" <[email protected]> wrote in
    message
    news:g09840$4jf$[email protected]..
    >I have a site which is set up in 2 main sections. I have
    a custom error
    >page
    > working for one half of the site but need to specify a
    different error
    > page for
    > the other half of the site.
    >
    > For example, any errors which occur while on pages in
    the /html folder
    > show
    > one error page.
    > Any errors which occur while on pages in the /htmlshop
    should show another
    > error page.
    >
    > Anyone know a way of achieving this?
    >
    > Many thanks.
    >

Maybe you are looking for

  • "this device isn't eligible for the requested build."

    I've just changed carrier and got a new sim card. My iphone 3gs will not work with my new sim because it is locked to my old carrier. I called my old carrier and they removed the lock from the phone and said all i had to do now was restore the phone

  • Outlook 2010 cannot connect to Century Link server

    My Outlook was working fine and Century Link made log in changes.  I have had professional work on my computer, still would not work, a clean install was done.  Outlook worked off and on in his office but will not work in my home.  Century Link blame

  • Typing lag

    I have a Compaq Presario S5180AP and recently I replaced the motherboard to a MSI 865GM2-LS. I also added a Radeon 9600 Pro to my system When I type it is very laggy. I have to wait like 2 seconds for each character to appear on the screen and if I t

  • Display WBS user defined fields

    Hi Experts, I want to add one more user defined field in WBS detail screen. Previously my WBS detail screen has 3 user fields displayed already. So I choose "Ufield 4 WBS element" (PRPS-USR03) in OPUK and set it as Input. And then I set the name for

  • Removing a service from windows server when deleted from registry

    I have a service in services.msc with the description saying "Failed to read description. Error code:2". The problem is the service isnt in the registry, using "sc delete" wont work. Ive tried adding the key into the registry with the string value se