Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • Cannot uninstal .NET Recipes

    buildmaster
    3
    0 Votes
    3 Posts
    1 Views
    ?
    All set. I was just deleting from the webtmp
  • 0 Votes
    2 Posts
    18 Views
    ?
    When you un/re-install ProGet, it will not delete the database unless you explicitly say to. If you run the service interactively (just run the ProGet.Service.exe), there is an option to reset the admin account permissions.
  • 0 Votes
    5 Posts
    6 Views
    ?
    This does involve a bit of refactoring... but we should be able to get this into 5.6, shipping on the 18th.
  • Package count on dashboard unexpected

    proget
    2
    0 Votes
    2 Posts
    4 Views
    ?
    We'll consider it when revising the UI/homescreen (we don't , but most package managers do seem to report the total (not unique)...
  • 0 Votes
    2 Posts
    6 Views
    ?
    This appears to be a bug - it should work exactly as you have stated. Our internal issue ID for this is BM-2281 and should be released in the next maintenance (or minor) version (whichever comes first).
  • SSL Error in Chocolatey Connector

    ssl proget connectors
    4
    0 Votes
    4 Posts
    860 Views
    ?
    In Chocolatey v0.10.1, we will automatically switch to using better TLS versions when available. This was done in https://github.com/chocolatey/choco/issues/458. If you see this issue when you are attempting to install Chocolatey itself, please see this documentation to understand your options: https://github.com/chocolatey/choco/wiki/Installation#installing-with-restricted-tls
  • Export all version of npm package

    proget npm
    2
    0 Votes
    2 Posts
    4 Views
    ?
    You may have luck grabbing the packages from the internal, disk-based package store, and copying those to the drop path on the new server.
  • Best practices for dealing with executions that to not stop

    otter
    9
    0 Votes
    9 Posts
    42 Views
    ?
    If restarting fixed it, then the "hanging" was in the service, likely the agent never reported back that the "job" (a very small unit of work, not an Otter job) was complete. Once we add cancellation to the UI, you could confirm that to be the case... Note that, as soon as the Otter service stops, the job will stop running, so the service won't be able to start itself back up. So you will need to have an external process running that will handle the restart, like this: $script = " sleep 10 `$svc = (Get-Service -ComputerName 'inedoappsv1' -Name 'INEDOBMSVC') Try { `$svc.Stop() } Catch { } `$svc.WaitForStatus([System.ServiceProcess.ServiceControllerStatus]::Stopped) `$svc.Start() " Start-Process -FilePath 'powershell.exe' -WorkingDirectory 'C:\Projects\BuildMaster' -ArgumentList @('-NoProfile', '-ExecutionPolicy', 'unrestricted', '-Command', $script) Write-Output 'BuildMaster will be deployed in 10 seconds' It is the relevant parts of a PS script we use to have BuildMaster deploy to itself; it seems to work pretty well.
  • Task Permissions

    proget documentation
    2
    0 Votes
    2 Posts
    5 Views
    ?
    Unlisting requires that Feeds_DeletePackage is part of the task.
  • Safe Transition From LDAP to AD

    proget ldap
    2
    0 Votes
    2 Posts
    9 Views
    ?
    You can fairly easily switch directory providers, so you could just try that and see if it works. A lot of organizations will have a dedicated ProGet test instance (note this requires a separate server license) to test upgrades and major configuration changes. For most organizations, both LDAP and the Multi-domain configuration "just work". So long as service account running the ProGet web application has the appropriate permissions to query, and the domains are set for proper trust, then users will be retreived as expected. But for some, it doesn't, and the only way to find out why is to do a detailed analysis using our code. 90% of the time it's a domain configuration problem. But there's no easy way to identify it because the AD libraries do not tell us why certain users or their groups are not returned in a query.
  • Npm registry not working?

    proget npm
    3
    0 Votes
    3 Posts
    11 Views
    F
    That did the trick! Thanks for the hint.
  • Universal Packages with empty group cannot bet set as dependencies

    bug proget
    2
    0 Votes
    2 Posts
    10 Views
    ?
    Thanks for the bug report. We'll investigate and get a fix in the next release. We probably will also change the group syntax in dependencies to use a / instead of a colon, so you could just specify: "Root" (or "group/Root", etc). Of course, we would retain compatibility with the : syntax as well, but this would make things less ambiguous.
  • Exception Accessing MapItem

    buildmaster variables
    2
    0 Votes
    2 Posts
    7 Views
    ?
    The way is correct, but it appears there's a bug in the evaluation while accessing the variable; this will be fixed in [BM-2278], which brought code in from Otter that fixes this bug.
  • Upack push times out

    proget
    5
    0 Votes
    5 Posts
    8 Views
    ?
    Hi Alana, thanks for that. Preliminary checks have given me no further timeouts. My push action takes just over two minutes (funny, I thought my internet was faster).
  • Build mvc project

    buildmaster microsoft msbuild net
    6
    0 Votes
    6 Posts
    19 Views
    ?
    You can Log-Information to see what $WorkingDirectory is. Unless you set a value, it will be something like C:\BuildMaster\_SVCTMP\_Ennn\D0 where nnn is internal identifier of the execution. Log-Information Working-Directory is $WorkingDirectory;
  • Inline PSExec Variable Evaluation

    buildmaster variables
    3
    0 Votes
    3 Posts
    15 Views
    ?
    Thank you. The source code makes it explicitly clear what is going on. I was assuming that the OtterScript variables were being parsed out directly from the text input rather than being passed to the PSParser before hand. This also explains my troubles with the List and Map variable types as I was attempting to utilize them inline in my PSExec steps. I would suggest mentioning this parse behavior in the PSExec documentation link text and in the "Inline Script Execution" section of link text
  • Plans for Slack integration?

    buildmaster
    3
    0 Votes
    3 Posts
    9 Views
    ?
    Very cool, thanks for sharing! I actually ended up doing the same thing by making a curl call, but I like your way better. I'll try to give the plugin a try sometime.
  • 0 Votes
    6 Posts
    11 Views
    ?
    Yes; that behavior was added in v3 because there were a lot of execution collisions (the default working directory used the ApplicationId). This was undesired by nearly all users. The v5 engine uses ExecutionId for the default working directory,, and any collisions outside of working directories should be resolvable with a global lock.
  • How can I convert a trial licence to a free edition

    licensing proget
    2
    0 Votes
    2 Posts
    7 Views
    ?
    Just enter the license key in Admin > License. You can request a key at my.inedo.com
  • Is there anyway to automatically generate a feed per branch?

    proget
    2
    0 Votes
    2 Posts
    0 Views
    ?
    You can use the ProGet Native API to create feeds, and we will soon have a better endpoint available for that.
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation