Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

4,187

Downloads of v 19.1.01:

134

Last Update:

13 Mar 2019

Package Maintainer(s):

Software Author(s):

  • Oracle NetSuite

Tags:

netsuite oracle sdf sdk suitecloud development framework

NetSuite SDF SDK Tool

This is not the latest version of NetSuite SDF SDK Tool available.

  • 1
  • 2
  • 3

19.1.01 | Updated: 13 Mar 2019

Downloads:

4,187

Downloads of v 19.1.01:

134

Maintainer(s):

Software Author(s):

  • Oracle NetSuite

NetSuite SDF SDK Tool 19.1.01

This is not the latest version of NetSuite SDF SDK Tool available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 14 Mar 2019.

WARNING

This package is unlisted and hidden from package listings.

Description

NOTE FOR UPGRADING FROM 18.2.0: Given the recent changes to the "Save Token" functionality, before upgrading from 18.2.0, make sure you go to the installation directory and move the .clicache file to your user directory. This will keep your tokens from being overwritten with this and future upgrades. This is note a required step, but not doing so will reset tokens on your local environment.

Also, since multiple version may be needed if you work in multiple environments, a new folder structure was created in 19.1.0 that will keep the two latest versions for easy switching.

This is an installer script that follows the installation instructions from the NetSuite Help Center (requires login). The installation directory is: C:\Users\YOURUSER\sdfcli and is only available to the user installing the package.

I do not own the rights to SDF, those rights are included in the attached license.

This release is not compatible with Oracle-NetSuite 18.2.x, do not upgrade SDF SDK if your NetSuite Environment has not been upgraded.


tools\chocolateyinstall.ps1
Add-Type -AssemblyName System.IO.Compression.FileSystem

$ns_version = "19.1"
$root = $(Split-Path -Parent $MyInvocation.MyCommand.Definition)
$bin = Join-Path $root "bin"
$installParent = $env:USERPROFILE

$test_parent = "$installParent\sdfcli"

If(!(test-path $test_parent)) {
    New-Item "$test_parent" -type directory
}

$app_dir = Join-Path $installParent "sdfcli"

$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)

$install_url = "https://system.netsuite.com/download/suitecloud-sdk/cli/java/$ns_version/sdf-cli.zip"

# Install the CLI Tool
$installation_args = @{
    packageName    = 'sdfcli'
    url            = $install_url
    url64bit       = $install_url
    unzipLocation  = $app_dir
    checksum       = 'f51d4647bb863241583df23ffbcc434af08bffe3e6c7b280a16d2aa43194611a'
    checksumType   = 'sha256'
    checksum64     = 'f51d4647bb863241583df23ffbcc434af08bffe3e6c7b280a16d2aa43194611a'
    checksumType64 = 'sha256'
}
 
Install-ChocolateyZipPackage @installation_args


# Add the CLI tool to the PATH
$oldpath = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).path
$newpath = "$oldpath;$appParent"
Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newPath

# Add a shortcut to the .clicache file
$mklinkclicache = 'cmd /c mklink "' + $app_dir + '\.clicache" "..\.clicache"'
invoke-expression "$mklinkclicache"
tools\chocolateyuninstall.ps1
$installParent = $env:USERPROFILE
$appDir = Join-Path $installParent "sdfcli"

Remove-Item –path $appDir -Force -Recurse

$oldPath = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).path

$newPath = ($oldPath.Split(';') | Where-Object { $_ -ne $appDir }) -join ';'

Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newPath

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
NetSuite SDF SDK Tool 19.1.2 256 Tuesday, July 9, 2019 Approved
NetSuite SDF SDK Tool 19.1.1 244 Friday, April 26, 2019 Approved
NetSuite SDF SDK Tool 19.1.0 213 Monday, March 11, 2019 Approved
NetSuite SDF SDK Tool 18.2.1 242 Wednesday, February 27, 2019 Approved
NetSuite SDF SDK Tool 18.2.0 362 Saturday, September 22, 2018 Approved
NetSuite SDF cli Tool 18.1.2 303 Thursday, August 23, 2018 Approved
NetSuite SDF cli Tool 18.1.1 426 Saturday, April 14, 2018 Approved
NetSuite SDF cli Tool 17.2.1 296 Saturday, April 7, 2018 Approved
NetSuite SDF cli Tool 17.2.0 470 Tuesday, September 5, 2017 Approved
NetSuite SDF cli Tool 17.1.2 325 Tuesday, September 5, 2017 Approved

Version NetSuite 19.1 - SDK Release 19.1.0


Discussion for the NetSuite SDF SDK Tool Package

Ground Rules:

  • This discussion is only about NetSuite SDF SDK Tool and the NetSuite SDF SDK Tool package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or NetSuite SDF SDK Tool, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus