;(function($){ $( document ).on( 'change', '#report_type,#report_period,#input_based', function(){ var url = quads_localize_data.rest_url + 'quads-adsense/get_report_adsense'; var report_type = $('#report_type').val(); var report_period = $('#report_period').val(); var input_based = (typeof $('#input_based').val() !== "undefined")?$('#input_based').val():''; var pub_id = $('#pub_id').val(); var data ={account_id:pub_id,report_type:report_type,report_period:report_period,input_based:input_based}; if($.trim(report_type) !='' & $.trim(report_period) !='' ) { $('#quads_reports_canvas').html('
'); $.ajax({ url: url, type: 'post', data: JSON.stringify(data), headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', 'X-WP-Nonce': quads_localize_data.nonce, }, success: function (response, status, XHR) { quads_display_report(response); }, error: function (request, status, error) { }, }); }else{ $('#quads_reports_canvas').html('

Please select Report type and Duration

'); } } ); $( document ).on( 'click', '#quads-connect-adsense', function(){ if ( $( this ).hasClass( 'disabled_adsense_link' ) ) return; if ( 'undefined' != typeof window.quadsMapiConnect ) { window.quadsMapiConnect(); } } ); // Unique instance of "quadsMapiConnectClass" var INSTANCE = null; var quadsMapiConnectClass = function( content, options ) { this.options = {}; this.AUTH_WINDOW = null; this.modal = $( '#gadsense-modal' ); this.frame = null; if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } this.setOptions( options ); this.init(); this.show( content ); return this; }; quadsMapiConnectClass.prototype = { constructor: quadsMapiConnectClass, // Set options, for re-use of existing instance for a different purpose. setOptions: function( options ) { var defaultOptions = { autoads: false, onSuccess: false, onError: false, }; if ( 'undefined' == typeof options ) { options = defaultOptions; } this.options = $.extend( {}, defaultOptions, options); }, // Tasks to do after a successful connection. exit: function(){ if ( this.options.onSuccess ) { if ( 'function' == typeof this.options.onSuccess ) { this.options.onSuccess( this ); } } else { window.location.reload(); } }, // Initialization - mostly binding events. init: function(){ var that = this; // Close the modal and hide errors. $( document ).on( 'click', '#gadsense-modal .dashicons-dismiss', function(){ $( '#mapi-code' ).val( '' ); $( '#gadsense-modal, #gadsense-modal-error' ).css( 'display', 'none' ); } ); // Confirm code for account connection. $( document ).on( 'click', '#quads-mapi-confirm-code', function(){ var code = $( '#mapi-code' ).val(); if ( '' == code ) return; $( '.gadsense-overlay' ).css( 'display', 'block' ); $( '#gadsense-modal-error' ).hide(); var data = { action: 'quads_gadsense_mapi_confirm_code', code: code, nonce: quads.nonce, }; $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( null !== that.AUTH_WINDOW ) { that.AUTH_WINDOW.close(); } $( '#mapi-code' ).val( '' ); if ( response.status && true === response.status && response['token_data'] ) { that.getAccountDetails( response['token_data'] ); } else { /** * Connection error handling. */ $( '.gadsense-overlay' ).css( 'display', 'none' ); $( '#mapi-code' ).val( '' ); $( '#mapi-autoads' ).prop( 'checked', false ); $( '#gadsense-modal-content-inner .dashicons-dismiss' ).trigger( 'click' ); if ($.parseJSON(response.response_body).error === 'invalid_grant') { $('#gadsense-modal-error').show(); $('#gadsense-reopen-connect').one('click', function (event) { event.preventDefault(); $('#gadsense-modal-error').hide(); that.show(); }); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } ); // Account selection $( document ).on( 'click', '.gadsense-modal-content-inner[data-content="account-selector"] button', function( ev ) { var adsenseID = $( '#mapi-select-account' ).val(); var tokenData = false; var tokenString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.token-data' ).val(); var details = false; var detailsString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.accounts-details' ).val(); try { tokenData = JSON.parse( tokenString ); } catch ( Ex ) { console.error( 'Bad token data : ' + tokenString ); } try { details = JSON.parse( detailsString ); } catch ( Ex ) { console.error( 'Bad account details : ' + detailsString ); } if ( details && JSON ) { $( '.gadsense-overlay' ).css( 'display', 'block' ); var data = { action: 'quads_gadsense_mapi_select_account', nonce: quads.nonce, account : details[ adsenseID ], 'token_data': tokenData, }; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { INSTANCE.exit(); } else { console.log( response ); } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } } ); }, show: function( content ) { if ( 'undefined' == typeof content ) { content = 'confirm-code'; } this.switchContent( content ); if ( 'confirm-code' == content ) { // Open Google authentication in a child window. this.modal.css( 'display', 'block' ); var oW = $( window ).width(), oH = $( window ).height(), w = Math.min( oW, oH ) * 0.8, h = Math.min( oW, oH ) * 0.8, l = (oW - w) / 2, t = (oH - h) / 2, args = 'resize=1,titlebar=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t; this.AUTH_WINDOW = window.open( quads_adsense.auth_url, 'quadsOAuth2', args ); } }, // Get account info based on a newly obtained token. getAccountDetails: function( tokenData ){ var data = { action: 'quads_gadsense_mapi_get_details', nonce: quads.nonce, }; data['token_data'] = tokenData; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { if ( response['adsense_id'] ) { INSTANCE.exit(); } else if ( response['token_data'] ) { INSTANCE.switchContent( 'account-selector' ); INSTANCE.frame.find( 'select' ).html( response.html ); INSTANCE.frame.find( 'input.token-data' ).val( JSON.stringify( response['token_data'] ) ); INSTANCE.frame.find( 'input.accounts-details' ).val( JSON.stringify( response['details'] ) ); } else { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( JSON.stringify( response ) ); } } else { if ( response['raw']['errors'][0]['message'] ) { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); if ( 'undefined' != typeof quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ) { INSTANCE.frame.find( '.error-description' ).html( quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ); } else { INSTANCE.frame.find( '.error-message' ).append( ' (' + response['raw']['errors'][0]['reason'] + ')' ); } } else if ( response['raw']['message'] ) { INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); }, // Switch between frames in the modal container. switchContent: function( content ) { if ( this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ).length ) { this.modal.find( '.gadsense-modal-content-inner' ).css( 'display', 'none' ); this.frame = this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ); this.frame.css( 'display', 'block' ); $( '.gadsense-overlay' ).css( 'display', 'none' ); } }, // Show the modal frame with a given content. // Hide the modal frame hide: function(){ this.switchContent( 'confirm-code' ); this.modal.css( 'display', 'none' ); }, }; window.quadsMapiConnectClass = quadsMapiConnectClass; // Shortcut function. window.quadsMapiConnect = function( content, options ) { if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } if ( 'undefined' == typeof options ) { options = {}; } if ( null === INSTANCE ) { INSTANCE = new quadsMapiConnectClass( content, options ); } else { INSTANCE.show( content, options ); } } $(function(){ // Move the the pop-up outside of any form. $( '#wpwrap' ).append( $( '#gadsense-modal' ) ); }); })(window.jQuery); function quads_display_report(response){ var report_type = document.getElementById('report_type').value; if(report_type == 'top_device_type') { var data_length = response.length; var datasets =[]; var dates_array = []; var desktop_total =0; var tablet_total =0; var mobile_total =0; for (index = 0; index < data_length; ++index) { if(!dates_array.includes(response[index][0]) ) { dates_array.push(response[index][0]); } if (response[index][1] == 'Desktop') { desktop_total += parseFloat(response[index][2]); } else if (response[index][1] == 'Tablet') { tablet_total += parseFloat(response[index][2]); } else if (response[index][1] == 'HighEndMobile') { mobile_total += parseFloat(response[index][2]); } } datasets= [{ data: [ desktop_total.toFixed(2),tablet_total.toFixed(2),mobile_total.toFixed(2) ], backgroundColor: [ 'red', 'green', 'blue', ], label: 'Top Earning Device type' }]; var config = { type: 'pie', data: { datasets: datasets, labels: [ 'Desktop', 'Tablet', 'Mobile', ] }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true } }; }else { var data_length = response.length; var dates_array = []; var data = []; for (index = 0; index < data_length; ++index) { var date = new Date((response[index][0])); var month = date.toLocaleString('default', { month: 'short' }); var New_date_formate = date.getDate()+' '+month+' '+date.getUTCFullYear(); if (!dates_array.includes(New_date_formate)) { dates_array.push(New_date_formate); } data.push(response[index][1]); } datasets = [{ label: 'Earnings', backgroundColor: 'red', borderColor: 'red', data: data, fill: false, }]; var config = { type: 'line', data: { labels: dates_array, datasets: datasets }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true, tooltips: { mode: 'index', intersect: false, }, plugins: { title: { display: true, text: 'Chart.js Line Chart' }, }, scales: { xAxes: { display: true, scaleLabel: { display: true, labelString: 'Month' } }, yAxes: { display: true, scaleLabel: { display: true, labelString: 'Value' } } } } }; } quadsDrawChart(config); } function quadsDrawChart(config){ if(document.getElementById("quads_canvas")) document.getElementById("quads_canvas").outerHTML = ""; var new_canvas = "" + " "; document.getElementById('quads_reports_canvas').innerHTML = new_canvas; if(window.myPieChart ) { window.myPieChart.update(); } // Get the context of the canvas element we want to select var ctx = document.getElementById('quads_canvas'); // ctx.clearRect(0, 0, canvas.width, canvas.height); window.myPieChart = new Chart(ctx, config); }import countryTranslations from "./countries.js"; import interfaceTranslations from "./interface.js"; export { countryTranslations, interfaceTranslations }; const allTranslations = { ...countryTranslations, ...interfaceTranslations }; export default allTranslations; .redux-container-datetime .redux-datetime-container .input_wrapper, .redux-container-datetime .redux-datetime-container .single_wrapper { display: block; position: relative; margin: 0 4px 0 5px; padding: 0; width: 25%; max-width: 25%; min-width: 70px; float: left; clear: none; height: 57px; -webkit-box-sizing: border-box; box-sizing: border-box; vertical-align: baseline; } .redux-container-datetime .redux-datetime-container .single_wrapper { width: 50% !important; max-width: 50% !important; } .redux-container-datetime .redux-datetime-container label { display: block; position: relative; font-size: 12px !important; text-align: left; color: #999999; margin: 4px 0 2px 0 !important; cursor: default; } .redux-container-datetime .redux-datetime-container .redux-date-picker { width: 100%; } .redux-container-datetime .redux-datetime-container .redux-time-picker { width: 100%; } .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; } .ui-timepicker-div dl dt { float: left; clear: left; padding: 0 0 0 5px; } .ui-timepicker-div dl dd { margin: 0 10px 10px 40%; } .ui-timepicker-div td { font-size: 90%; } .ui-timepicker-div .ui_tpicker_unit_hide { display: none; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; } .ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt { display: none; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; } .ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; } .ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display: inline-block; margin: 0; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content: "."; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content: ":"; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before { display: none; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div .ui-slider { position: relative; text-align: left; } .ui-timepicker-div .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; -ms-touch-action: none; touch-action: none; } .ui-timepicker-div .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.7em; display: block; border: 0; background-position: 0 0; } .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-handle, .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-range { -webkit-filter: inherit; filter: inherit; } .ui-timepicker-div .ui-slider-horizontal { height: 0.8em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-timepicker-div .ui-slider-vertical { width: 0.8em; height: 100px; } .ui-timepicker-div .ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-max { top: 0; } .ui-timepicker-rtl { direction: rtl; } .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; } .ui-timepicker-rtl dl dt { float: right; clear: right; } .ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; } /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlZHV4LWRhdGV0aW1lLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRVE7QUFBQTtDQUVJO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDRTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHRjtDQUNJOztBQUdKO0NBQ0k7OztBQU1aO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7OztBQUlBO0NBQ0k7O0FBR0o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJOztBQUlSO0NBQ0k7O0FBR0o7Q0FDSTs7QUFHSjtDQUNHO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFFQTtDQUNJOztBQUlQO0NBQ0k7O0FBRUE7QUFBQTtDQUVJOztBQUdKO0NBQ0k7Q0FBZ0I7O0FBR3BCO0NBQ0k7O0FBRUE7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJO0NBQ0E7O0FBS1I7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJOztBQUlSO0NBQ0k7O0FBR0E7Q0FDSTtDQUNBOztBQUVBO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FFSTs7QUFJUjtDQUNJOztBQUVBO0NBQ0k7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7QUFJWjtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7O0FBS1o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBOztBQUdKO0NBQ0kiLCJmaWxlIjoicmVkdXgtZGF0ZXRpbWUuY3NzIn0= */ /*# sourceMappingURL=redux-datetime.css.map */ External SSDs & HDDs – CompareInsight https://compareinsight.com Your Shortcut to the Best Deals. Thu, 17 Jul 2025 11:32:44 +0000 en-US hourly 1 https://compareinsight.com/wp-content/uploads/2025/04/Favicon-100x100.png External SSDs & HDDs – CompareInsight https://compareinsight.com 32 32 SanDisk 1TB Extreme Portable SSD – Up to 1050MB/s, USB-C, USB 3.2 Gen 2, IP65 Water and Dust Resistance, Updated Firmware – External Solid State Drive – SDSSDE61-1T00-G25 https://compareinsight.com/product/sandisk-1tb-extreme-portable-ssd-up-to-1050mb-s-usb-c-usb-3-2-gen-2-ip65-water-and-dust-resistance-updated-firmware-external-solid-state-drive-sdssde61-1t00-g25/ https://compareinsight.com/product/sandisk-1tb-extreme-portable-ssd-up-to-1050mb-s-usb-c-usb-3-2-gen-2-ip65-water-and-dust-resistance-updated-firmware-external-solid-state-drive-sdssde61-1t00-g25/#respond Thu, 17 Jul 2025 11:32:43 +0000 https://compareinsight.com/?post_type=product&p=6953

SanDisk 1TB Extreme External Portable SSD Up to 1050MB/s USB-C USB 3.2 Gen 2 SDSSDE51-1T00-AW25

4.0
$219.00
out of stock
Walmart.com
Your life's an adventure. To capture and keep its best moments, you need fast, high-capacity storage that accelerates every move. 1050MB/s read and 1000MB/s write speeds let you store your content and creations on a fast drive that fits seamlessly into your active lifestyle. Up to two-meter drop...

User reviews

I was shock to find out that I could order the item at 9am and received the item with just a few hours same day delivery, it more items keep be stock and deliver like that for sure there will be more purchases happing in the near future I also order a different product and is already coming tomorrow amazing
Fast transfer speed. Bought this to back up pictures and videos from iPhone. Worked great with fast transfer. We did end up returning it because we decided to get phone with larger storage capacity but are still reconsidering buying it again to have a physical drive to back up family photos
Great way to add portable storage. I love these portable SSDs. They're fast enough to edit video projects on directly, super-compact, and a great way to add extra storage to a MacBook at a much lower price than Apple's internal upgrades cost.
Great product and value. It's excellent value for the product. I will buy it again if I need to.
External hard drive 1 terabyte small and c-charger
It's a bit more expensive than Amazon. On the other hand, shipping was way faster.
Absolute Trah. Absolute worse piece of trash I ever bought in my life. The unlocker application constantly freezes up the drive. Always a error trying to copy the smallest of files. If you want to lose your data buy this waste of money. Going to get my money back.
Missing port/hollow device. The usb-c port was not installed. Wal mart staff opened three others and none of them had the port either. Steer clear of the silver version of this device.
The Worst Deal. I needed this item same day but it was over $20 more at the store. I signed up for Walmart plus to get a discount, but it didn't work. I spend over 3 hours on the phone to get a price match. This store is actively stealing from brick and mortar customers.
Scammed. These can't be real. Neither one works. Isn't recognized on any device Windows or apple

SanDisk 2TB Extreme External Solid State Drive, Black - SDSSDE61-2T00-G25

4.0
$289.99
in stock
Walmart.com
Your life's an adventure. The SanDisk Extreme Portable SSD fits your mobile lifestyle and accelerates every move. Compatibility USB Type-C devices (phones, laptops, and tablets) iOS 13+ Android 11+ macOS v.11+ Windows 10+ In The Box SanDisk Extreme Portable SSD USB-C to USB-C Cable USB-C to...

User reviews

Solid. My last external HD wasn't SSD and died because too much travel and josling. This one is solid. Still backing it up 3 ways to Sunday but think this one will last for a while. And I love the small size!
Excellent compact and speedy drive. works great super fast, compact and so far very reliable. I like that it can also connect direct to the iPhone for proves recoding option.
Small yet powerful. 4TB storage smaller than a cell phone. Easy to use plug it in and start loading
There is so much storage, and you don't have to worry about a hard dick failure. SSD is the way to go!
SanDisk Extreme 1TB SSD. My 1TB works well. Slower transfer than I expected, but it may be my older laptop capability. I am still using my 2TB WD My Book that I was going to replace. 🙂
Awesome and Fast. These are awesome little drives. I have 4 of them for all of my working files.
Reliable and Fast SSD with Reasonable Price. Feels sturdy, it's fast, and it's quiet, also not getting very hot like the other one I got.
not for series x/s. cant play xbox x enhanced games on it and it doesn't say it anywhere that is easy to see
As I read reviews about this item, I found out that this SSD drive has a lot of issues losing the data, therefore I decided to return this item
Not received delivered to wrong address. Item delivered to wrong address. I did not receive it at all

SanDisk 1TB Extreme Portable SSD, External Solid State Drive, Black - SDSSDE61-1T00-G25

4.0
$199.99 $253.60
out of stock
Walmart.com
Your life's an adventure. The SanDisk Extreme Portable SSD fits your mobile lifestyle and accelerates every move. Compatibility USB Type-C devices (phones, laptops, and tablets) iOS 13+ Android 11+ macOS v.11+ Windows 10+ In The Box SanDisk Extreme Portable SSD USB-C to USB-C Cable USB-C to...

User reviews

Great product, great color! Great product! My laptop somehow didn't have enough storage so my partner suggested I order this to store all my photos and files. And it's a great color!
Problem extream. It was great until it somehow got a password that i dont know.
Nice works great. I will order more from them great price and quality work
Overall great product quality. I already had this portable drive. What i love about this product is it's lighter, handy and water resistant.
Experience. 10/10 I find this super easy to use and I have not had any issues so far
Grandpa. See review on the first 1TB drive above. Needed a second drive to backup wife's laptop
Grandpa. Easy to use for a baby boomer generation person that grew up using IBM 360 computers
Mixed Feelings. I bought this to store photos and videos from my phone and it keeps freezing and/or making my phone glitch. When it works I absolutely LOVE IT, but I wish I could get it to consistently cooperate with me because it make the breeze of saving my files a bit more challenging and time consumint
Plenty of space for storage. I was able to store all the photos. I have taken over the past 15 years In one place
Performance. This device over heating. Less Performs. Hard to edit while data in the disk. Getting slower and after too much heating its start swollen.

SanDisk Extreme Portable - Solid state drive - 1 TB - external (portable) - USB 3.1 Gen 2

3.0
$225.00 $249.99
out of stock
Walmart.com
SanDisk Extreme Portable - solid state drive - 1 TB - USB 3.1 Gen 2

User reviews

good prve..quaity item...otie delivery
Team Player. Absolute compatibility. No issues, just plug-n-play performance.
Fast small light rugged. Works great? 1000 Mbps speed read and write rates
Fast, reliable and sturdy! Works well and reliable! We use this our tech side and it is great for moving data over and it is handy having some of our tech tools on hand!
Great product. This little thing here is absolutely amazing, I thought it would be a little bit bigger but I got a nice surprised when it came and I realized is not even bigger that my credit card. The quality feels nice and premium and the best thing of all it is that is incredible ridiculously fast, I can transfer from one pc to another gigas of information withing minutes, it´s amazing, highly recommended, also the package came in perfect condition tho the packed delay a little.
5
Works as described. This helped me move files off my laptop and increase productivity of my computer. I chose this because it was a name brand I knew and was reasonably priced.
Perfect little external SSD. Nice and quick. Easy to carry. Easy to figure out. Lots of space. Perfect for the price. I got two of them super happy!!
Great SSD Drive, Bad promo deal. This is an excellent portable SSD product. However, I am not happy that WD sold this adverting an iPhone/iPad external flash drive promo which wasn't sent out with the SanDisk purchase. Bad deal. But drive is good. Heats up in normal use so keep it well ventilated. Cable is a bit short.
Don't buy. Not worth it. I've had two of these and they both randomly disconnect. I've tried different cables and different computers but to no avail. $100 paper weight

SanDisk 1TB Extreme Portable SSD - Up to 1050MB/s, USB-C, USB 3.2 Gen 2, IP65 Water and Dust Resistance, Updated Firmware - External Solid State Drive -...

$99.99
out of stock
Walmart.com
Get NVMe solid state performance with up to 1050MB/s read and 1000MB/s write speeds in a portable, high-capacity drive(1) (Based on internal testing; performance may be lower depending on host device & other factors. 1MB=1,000,000 bytes.) Up to 3-meter drop protection and IP65 water and dust...

Sandisk NVME Extreme Portable 1TB Solid State Drive

5.0
$99.99 $160.00
out of stock
Walmart.com
Your lifeâs an adventure. To capture and keep its best moments, you need fast, high-capacity storage that accelerates every move. 1050MB/s read and 1000MB/s write speeds let you store your content and creations on a fast drive that fits seamlessly into your active lifestyle. Up to two-meter drop...
  • Get NVMe solid state performance with up to 1050MB/s read and 1000MB/s write speeds in a portable, high-capacity drive(1) (Based on internal testing; performance may be lower depending on host device & other factors. 1MB=1,000,000 bytes.)
  • Up to 3-meter drop protection and IP65 water and dust resistance mean this tough drive can take a beating(3) (Previously rated for 2-meter drop protection and IP55 rating. Now qualified for the higher, stated specs.)
  • Use the handy carabiner loop to secure it to your belt loop or backpack for extra peace of mind.
  • Help keep private content private with the included password protection featuring 256‐bit AES hardware encryption.(3)
  • Easily manage files and automatically free up space with the SanDisk Memory Zone app.(5)
]]>
https://compareinsight.com/product/sandisk-1tb-extreme-portable-ssd-up-to-1050mb-s-usb-c-usb-3-2-gen-2-ip65-water-and-dust-resistance-updated-firmware-external-solid-state-drive-sdssde61-1t00-g25/feed/ 0
Samsung T7 Portable SSD, 1TB External Solid State Drive, Speeds Up to 1,050MB/s, USB 3.2 Gen 2, Reliable Storage for Gaming, Students, Professionals, MU-PC1T0T/AM, Gray https://compareinsight.com/product/samsung-t7-portable-ssd-1tb-external-solid-state-drive-speeds-up-to-1050mb-s-usb-3-2-gen-2-reliable-storage-for-gaming-students-professionals-mu-pc1t0t-am-gray/ https://compareinsight.com/product/samsung-t7-portable-ssd-1tb-external-solid-state-drive-speeds-up-to-1050mb-s-usb-3-2-gen-2-reliable-storage-for-gaming-students-professionals-mu-pc1t0t-am-gray/#respond Thu, 17 Jul 2025 11:21:10 +0000 https://compareinsight.com/?post_type=product&p=6945

SAMSUNG T7 Portable SSD 1TB Indigo Blue, Up-to 1,050MB/s, USB 3.2 Gen2, External - MU-PC1T0H/AM

5.0
$209.00
out of stock
Walmart.com
The Samsung Portable SSD T7 (MU-PC51T0H/AM) is the next standard in external storage. With transfer rates up to 9.5x faster than traditional external hard drives and read/write speeds up to 1000+ MB/s, you can move massive files around with unparalleled ease and fluidity. It's sleek,...

User reviews

Works with all my devices. I bought 2 of these SSDs - one for my PS5 and one for my Android phone and Windows PC. The SSD works perfectly with all my devices. With my PS5 I am able to play PS4 games from it directly, and store PS5 games I don't have space for on the console memory. Speeds are great, no long transfer times or errors.
Samsung T7 review. I haven't had the opportunity to use it much. I have it hooked up to the Mac mini 4. Seems to work as it should and can play games that are stored on it. I will give a better review once I've had it for a few months and am able to put it through more tasks.
Flash Memory got super small when I wasnt looking. This SSD is the size it says it is, 1TB, but it is maybe 2/3 the size of my phone. It comes with a USB-C to USB-C, and a USB-A to USB-C cable, and it works exactly as described. For $100 this was a pretty good purchase.
Blue color: easy to distinguish from other tech. Not only does this external hard drive work as expected, but it's also in an eye-popping blue that makes it easy to distinguish from my other hard drives. Installation and use were a breeze, and same-day delivery was a huge bonus!
Picking it up at Walmart. They said order gonna be ready that date when I got to the parking lot and open my app and told the app that I was there two minutes later the kid shows up. Good service.
I wanted blue 1 tb and a little harder to find these days
i liked the tablet very well except it has no sim card. it has everything else: keyboard and mouse, qhucg have everything they ney to beysefukl. as a veteran i have weekly and monthly video conferences, qith my doctors, nurse , social worker, etc. since i am confined to a bed this is the only way i can take care of my appointments that other veterans can rake care of by going to the clinic itself. that sim card is the only downside so far. for those who want quality at an inexpensive price, meize is the way to go.
Reliable, Affordable, and High-Performance Storage. I purchase the Samsung Portable SSD T7 1TB USB 3.2 external hard drives every year because of their reliability, performance, and how compact they are. This was my first time ordering them through Walmart, and I was pleasantly surprised to find that their prices were lower compared to other retailers. The only downside is that Walmart doesn't offer the red or gray color options. Having different colors would make it easier to distinguish between my primary drive and my backup, which is a small but important detail for organization. Overall, I highly recommend the Samsung T7. It's compact, fast, and significantly less prone to failure than other external drives I've used. If you're looking for a dependable storage solution, this is an excellent choice!
It's a great product, it simply heats up too much sometimes when transferring large amounts of data. Be mindful of the temperatures and how much you're transferring over to the disc at a given time and you should be good.
USED not new. I purchased online for pick up, and received a USED product! The tape was haphazardly replaced on the damaged box, and the cords inside had some sticky gunk on them. If this was an open box purchase then it should have been on discount, not full price! 96.00 for a USED item is not acceptable. I'm very dissatisfied with this purchase.

SAMSUNG T7 Portable SSD 1TB Titan Gray, Up-to 1,050MB/s, USB 3.2 Gen2 (MU-PC1T0T/AM)

5.0
$269.99
in stock
Walmart.com
The SAMSUNG T7 Portable SSD 1TB Titan Gray, Up-to 1,050MB/s, USB 3.2 Gen2 (MU-PC1T0T/AM) is the next standard in external storage. With transfer rates up to 9.5x faster than traditional external hard drives and read/write speeds up to 1000+ MB/s, you can move massive files around with...

User reviews

Works with all my devices. I bought 2 of these SSDs - one for my PS5 and one for my Android phone and Windows PC. The SSD works perfectly with all my devices. With my PS5 I am able to play PS4 games from it directly, and store PS5 games I don't have space for on the console memory. Speeds are great, no long transfer times or errors.
Mighty Little Device. My tech guy suggested this for my new computer as I store a lot of jpgs. It backs up automatically every few hours or so, as far as I can see. The first backup, with transfer of all of the photo files, took a little over an hour, but the subsequent backups took a hot minute. It is solid, and my computer guy tells me it is a secure way to store my files, that they will not degrade, etc. The only downside I could see was that it got a bit warm during the initial transfer of data, so I set it on top of a screen to keep it cool.
Samsung T7 Portable SSD. This review is for the Samsung T7 Portable SSD with hard drive capacity of 1TB and the titan gray color. I bought it at Walmart.com and it was sold and shipped by Newegg Inc. The price at Walmart.com was comparable to all the other outlets that sell the exact same product. The product arrived a few days early and was carefully packed. The drive measures 3 5/16" L x 2 3/16" W x 1/4" H. It is compact and feels sturdy and well-built. It includes two connector cables – one USB C to USB A cable for use with PCs and laptops and one USB C to USB C cable for use with smart phones. The cable for both measures 18" L. It would have been nicer to have a longer cable but perhaps that would decrease read/write times. The drive includes the Samsung Magician app that provides performance optimization, diagnostic scanning, security, encryption, secure erase and firmware updates. This Samsung SSD includes Dynamic Thermal Guard that is an advanced thermal solution to enable the drive to withstand and control heat, so the portable SSD stays at an optimal temperature. I will have to see over time how effective this is, but so far so good. Overall, I give this portable SSD a favorable "BUY" recommendation.
Fast drive. I purchased a blue and a gray. So far I am impressed
Great storage device to security camera footage. Great storage device to security camera footage in my car
Best External Hard Purchased. It has a security setting and built in scan to make sure files are safe and without errors. I love this. This is my second purchase of this model!
That sums it all up. Excellent solution to my storage needs.
super easy set up, light weight, fast transfer rate, and comes with all the cords needed
Great Versatility. Easy to use and great for backing up multiple laptops.
unrecoverable I/O errors. I tried to use this as a backup medium for the internal drive on my workstation, but after writing less than a megabyte the device reported an I/O error and the backup process hung. I tried steps as simple as directly copying a small file to this device, but it always reports an I/O error and the copy process hangs. Maybe I got the unlucky one in a million which is defective, but I plan to return it to a local Wal-Mart store.

SAMSUNG T7 Shield 2TB Portable SSD, USB 3.2 Gen2, Rugged, IP65 Rated, for Photographers, Content Creators and Gaming, External Solid State Drive...

5.0
$424.99
in stock
Walmart.com
SAMSUNG T7 Shield 2TB Portable SSD, USB 3.2 Gen2, Rugged, IP65 Rated, for Photographers, Content Creators and Gaming, External Solid State Drive (MU-PE2T0R/AM, 2022), Blue

User reviews

Arrived quickly. Easy to install and use.
Best SSD for a DJ. Excellent storage, great transfer speeds, all in one small device that packs a big punch. Well worth the great price…
Tesla sentry mode. [This review was collected as part of a promotion.] This has worked great with my "Tesla sentry mode." It holds many days of video and I have stopped getting errors of my memory device not writing fast enough!
SSD For Me. [This review was collected as part of a promotion.] I just got my hands on this product, and I'm absolutely loving it! It's everything I hoped it would be and more. The quality is top-notch, and it's just so convenient to use. I can't believe how much I've already gotten out of it. Seriously, if you're on the fence, just go for it!
Calidad, durabilidad, excelente producto!!! [This review was collected as part of a promotion.] This external memory is bought from my 13-year-old son for his PlayStation 5 that he uses every day more than 4 years ago and this perfect functional, really an excellent product. is worth every penny invested.
The Best Drives Available. [This review was collected as part of a promotion.] I purchased several of these drives and I am so happy with them. They've never failed and hold tons of storage. They're also so much faster than a spinning disk drive. I can't recommend these enough.
Small but powerful. [This review was collected as part of a promotion.] This is smaller than a laptop hard drive, but its build with high quality materials, it's solid and the texture is really nice. Extremely fast moving big files using USB C connection. Highly recommend hard drive!
Decent for my first portable SSD owned. [This review was collected as part of a promotion.] It's very easy to use and manage. I wish there was a better system to automatically organize duplicate files and folders though. And I wish it could transfer videos faster. Surprisingly, playing steam games from these SSDs is fast enough. I thought I would have lagging issues because I didn't get the "faster" SSDs, but it does fine. It's also very durable for how clumsy I am, though I wish there was some type of cover for the hole openings. I bought a blue and a beige version.
All great! [This review was collected as part of a promotion.] Is really stands out with its sleek, tech-inspired design. The silicone outer shell not only looks rugged but also feels incredibly durable, giving me confidence it can handle drops. Speeds are impressive, making file transfers quick and efficient. While performance is important, I personally love and value the overall appearance the most—it's stylish and modern without compromising functionality.
Beautiful Device. [This review was collected as part of a promotion.] I absolutely love my new Samsung T7 4TB hard-drive. It is so small that you dont realize you have it connected to a computer. It can be hidden out of site. This little thing can be put in your pocket and if you don't remember you put it there you wouldn't think about it. It is so light...Absolutely wonderful..

Samsung T7 Shield 1TB USB 3.2 Gen 2 Type-C Portable External SSD, Black

5.0
$270.48
in stock
Walmart.com
SAMSUNG T7 Shield 1TB, up to 1050MB/s, USB 3.2 Gen2, Rugged, IP65 Rated, for Photographers, Content Creators and Gaming, Portable External Solid State Drive (MU-PE1T0S/AM, 2022), Black

User reviews

I used this to transfer more than 500 gb data at one setup of file transfer. The write speed was always stable and sufficiently high during the transfer time.
fast shipping, great hard drive. Very fast shipping. The drive was formatted out of the box and worked instantly. This will live in my car, so I like the rugged design.
I like it, good surface and great speed
Fast Transfer Speeds. [This review was collected as part of a promotion.] The device was very fast when transferring large files both through computer and a phone. I love that it's easily compatible with the Samsung Magician app on both the phone and computer, and that it offers encryption and password protection to protect your files.
Affordable and Reliable Storage Solution. [This review was collected as part of a promotion.] I purchased this 1Tb SSD to replace an old and failing portable hard drive. I searched for a drive that was first off affordable, with enough memory to allow for future needs. I use this SSD for keeping my important information portable. I love the plug and play part because that makes it easy to move between my work Laptop and my home PC. It is USB C which makes it compatible with all my new devices.
My favorite drive. [This review was collected as part of a promotion.] One of my best external ssd drives.this d e vice can transfer all 2tb worth of data without slowing down or thermal throttling. The samsung magician software also puts it ahead of competing drives making health monitoring and firmware easy to manage.
Fast, Reliable,andCompact- ThePerfect External SSD. [This review was collected as part of a promotion.] I've been using the Samsung T7 Portable SSD (1TB) for a year now, and it's hands-down one of the best storage devices l've owned. Whether you re a photographer moving large RAW files, a video editor needing quick transfers, or just someone who wants fast, reliable backups, the T7 hits the mark in every category. Performance Speed is the biggest selling point here, and the T7 delivers. With USB 3.2 Gen 2 support, I consistently see read and write speeds in the 900+ MB/s range when connected to compatible devices. Real-world use backs it up--transferring large batches of photos or video files is smooth and snappy. What used to take minutes on a traditional external hard drive now takes seconds. It's also incredibly responsive for everyday tasks. lve used it to run applications, store active project files, and even as a scratch disk for video editing . It handles everything without hesitation. Portability and Design The T7 is sleek, lightweight, and about the size of a stack of business cards. It slips easily into any bag or even a pocket, making it ideal for travel or working on the go. Despite its size, it feels sturdy, with a metal body that gives it a premium, durable feel. Ive dropped it once (accidentally) from desk height, and it didn't even leave a scratch -- both the drive and the files were perfectly fine. Samsung includes both USB-C to USB-C and USB-C to USB-A cables, so it's compatible with just about anything out of the box. I've used it with a MacBook, Windows PC, and even a tablet-no issues on any platform. Security and Software Samsung offers optional password protection with AES 256-bit encryption through its software, which is great if you're storing sensiive data. The setup is straightforward, and the interface is clean. That said, you can also just use it as a plug-and-play drive without ever touching the software-it's flexible depending on how you want to use it. Reliability After heavy, regular use, the drive hasn't missed a beat. No corrupted files, no dropped connections, no strange noises (as you'd get with spinning hard drives)-just consistent, solid performance . It stays cool under load and reconnects instantly when switching between devices. I've also appreciated that it doesn't need an external power source-it draws what it needs directly from the device it's plugged into: Pros: Blazing-fast read/write speeds (up to ~1,000 MB/s) . Compact, lightweight, and durable aluminum design . Plug-and-play across Windows, macOS, and more Comes with both USB-C and USB-A cables Optional password protection with AES encryption. Completely silent operation . No external power source needed Cons: . Maximum speeds require USB 3.2 Gen 2 port (slower on older ports). Included software is basic (fine for most users but not feature-rich) . Costs more than standard hard drives (but well worth it for the speed and reliability) Final Thoughts The Samsung T7 1TB Portable SSD is one of those rare tech products that does exactly what it promises- and does it exceptionally well. It's fast, reliable, and thoughtfully designed. Whether you're using it for work, backups, or media storage, it's a hassle-free solution that feels like a real upgrade over older external drives. It's not the cheapest storage option out there, but if speed, portability, and peace of mind matter to you, it's easily worth the investment. I'd buy it again in a heartbeat.
The best sS Best SSD. [This review was collected as part of a promotion.] I think it's one of the best Ssd's I've ever used very reliable Very reliablevery reliable and a lot better than that rest of the junk out And lot better thanvery reliable and a lot better than that. The rest of the junk out there, I always use samsung I always usevery reliable and a lot better than that. The rest of the junk out there. I always use samsung for everything
Top notch portable ssd drive! [This review was collected as part of a promotion.] The Samsung Portable SSD T7 Shield 1 TB has been a total game-changer for me. I love how incredibly fast it is, letting me zip large files around and even edit directly without any annoying lag. But honestly, the real winner is its toughness. This thing feels practically indestructible with its rugged, rubberized shell and it's even dust and water-resistant – no more babying my external drive! It's also super compact and comes with all the cables I need, making it perfect for throwing in my bag. Plus, the built-in security keeps my stuff safe. All in all, it's a fantastic, reliable drive that I can't recommend enough!
Fast and Durable Portable SSD. [This review was collected as part of a promotion.] The Portable SSD T7 Shield 1TB USB 3.2 Gen 2 has impressed me with its reliable performance and rugged durability. From the moment I started using it, the fast data transfer speeds stood out—large video files and high-resolution photos moved quickly without delay. The build quality feels premium, with a solid rubberized exterior that gives confidence it can handle bumps and drops during travel or outdoor use. The compact design makes it easy to slip into a pocket or bag, yet it feels tough enough for demanding environments. The thermal control is also well-managed; even during extended file transfers, the drive stayed cool to the touch. Setup was seamless, and the included security features like password protection with AES 256-bit encryption were easy to enable and provided peace of mind for storing sensitive content. Overall, the T7 Shield offers an excellent balance of speed, durability, and portability—ideal for creatives, professionals, or anyone needing reliable storage on the go.

Samsung - T7 2TB External USB 3.2 Gen 2 Portable SSD with Hardware Encryption MU-PC2T0H/AM

5.0
$549.99
in stock
Walmart.com
The Samsung Portable SSD T7 (MU-PC52T0H/AM) is the next standard in external storage. With transfer rates up to 9.5x faster than traditional external hard drives and read/write speeds up to 1000+ MB/s, you can move massive files around with unparalleled ease and fluidity. It's sleek,...

User reviews

Works with all my devices. I bought 2 of these SSDs - one for my PS5 and one for my Android phone and Windows PC. The SSD works perfectly with all my devices. With my PS5 I am able to play PS4 games from it directly, and store PS5 games I don't have space for on the console memory. Speeds are great, no long transfer times or errors.
Quick and easy to install. This is the second Samsung PSSS that I have purchased. I have used one on a Microsoft PC and on on an Apple Macintosh PC. The software discovers the drive with no problem. It is a very stable drive with loads of capacity.
It works great , easy to use, holds a lot
Samsung T7 1TB SSD: My Go-To for the Blackmagic 6K. [This review was collected as part of a promotion.] For anyone shooting with a Blackmagic 6K Pro, finding a reliable external drive is essential. The Samsung T7 1TB portable SSD has become an absolutely critical part of my setup. I constantly use this drive as my external record drive, pushing it hard with 6K RAW video at 50 frames per second. The result? Zero dropped frames, zero errors. Every single time. That kind of consistent performance is crucial when you're on a shoot and can't afford any hiccups. It simply works, giving me total peace of mind. Forget dealing with CFast 2.0 cards and their high costs, or struggling with SD cards. While some high-end SDs can technically handle the data rates, the real hassle often comes with the workflow – you usually need an extra card reader just to offload files. Not with the T7. It connects directly like any other hard drive, making transfers seamless. It's faster, more convenient, and honestly, a much smarter investment than constantly buying expensive cards. It's also super compact and tough. I can easily rig it up, and because it's an SSD, there are no moving parts to worry about. Bumps and shakes on set? No problem at all. Despite some discussions about the "plain" T7 versus the Shield or T5, my personal experience with the 1TB version for 6K 50fps RAW has been flawless. It holds up, every single time. Bottom line: If you're shooting with a Blackmagic 6K Pro and need a dependable, high-performance, and straightforward external recording solution, the Samsung T7 1TB is the answer. It's truly transformed my workflow for the better.
This SSD drive is small and reliable.
Very Fast and Easy use. Perfect size
Reliable and fast. I needed a portable SSD option and I would have preferred it were smaller considering it is only 2 TB, but the speed and reliability are good enough for the use I expect to give to it.
FAKE! Seller ASFGG on Walmart Marketplace is selling fake Samsung SSD's. I got suspicious when the packaging didnt look right and then noticed it was labeled "T5" instead of the T7 I ordered. I used Samsung's "magician" application to inspect the drive and found out it was a fake 2TB USB 2.0 device made up to look like a real Samsung SSD.
Disappointed, a knockoff - will be returned. The item shipped was a knockoff - from the packaging and the markings on the item, it is easy to determine that it was not made by Samsung. The item was labeled a T5 model (not T7) and was a different size, shape, colour, and weight of the genuine item. The SSD worked but write speed was about 1/4 of the speed of an actual Samsung T7 3.2 SSD. Will be returned.
An other fake device. I also bought this SDD from Seller ASFGG on Walmart Marketplace, and looks like a fake SamSung T7 (in fact it is written T5 on the device). Connection to the SDD is unstable, and the writing speed is even slower than my very old HDs. I just saw an other review explaining exactly what I have purchased, very disappointing. This is a complete useless device...

SAMSUNG Portable SSD T7 500GB USB 3.2 External - Red (MU-PC500R/AM)

5.0
$99.00
out of stock
Walmart.com
The Samsung Portable SSD T7 (MU-PC500R/AM) is the next standard in external storage. With transfer rates up to 9.5x faster than traditional external hard drives and read/write speeds up to 1000+ MB/s, you can move massive files around with unparalleled ease and fluidity. It's sleek,...

User reviews

Works with all my devices. I bought 2 of these SSDs - one for my PS5 and one for my Android phone and Windows PC. The SSD works perfectly with all my devices. With my PS5 I am able to play PS4 games from it directly, and store PS5 games I don't have space for on the console memory. Speeds are great, no long transfer times or errors.
I put this product to use the same day I bought it. I used it to backup my computer files. The speed of transfer through the usb c to usb c cable was quick. Transfer of my files also appeared to be accurate and complete.
Samsung T7 1TB SSD: My Go-To for the Blackmagic 6K. [This review was collected as part of a promotion.] For anyone shooting with a Blackmagic 6K Pro, finding a reliable external drive is essential. The Samsung T7 1TB portable SSD has become an absolutely critical part of my setup. I constantly use this drive as my external record drive, pushing it hard with 6K RAW video at 50 frames per second. The result? Zero dropped frames, zero errors. Every single time. That kind of consistent performance is crucial when you're on a shoot and can't afford any hiccups. It simply works, giving me total peace of mind. Forget dealing with CFast 2.0 cards and their high costs, or struggling with SD cards. While some high-end SDs can technically handle the data rates, the real hassle often comes with the workflow – you usually need an extra card reader just to offload files. Not with the T7. It connects directly like any other hard drive, making transfers seamless. It's faster, more convenient, and honestly, a much smarter investment than constantly buying expensive cards. It's also super compact and tough. I can easily rig it up, and because it's an SSD, there are no moving parts to worry about. Bumps and shakes on set? No problem at all. Despite some discussions about the "plain" T7 versus the Shield or T5, my personal experience with the 1TB version for 6K 50fps RAW has been flawless. It holds up, every single time. Bottom line: If you're shooting with a Blackmagic 6K Pro and need a dependable, high-performance, and straightforward external recording solution, the Samsung T7 1TB is the answer. It's truly transformed my workflow for the better.
Good! It should have a protective case to store it.
Excellent backup recording for Teslas. Small. Fits in glove compartment. Easy to format with Tesla built in software. Great for sentry mode. Clear recording.
Incredible Value on this Samsung External Storage! I really link this Samsung T7 external SSD drive. This is actually the FOURTH such drive I have. The first was a gift, but two were purchased for my own use! This one is the only 500GB drive I've purchased as it was the right size to load files on to hand down to my successor in my job as editor of a union publication. (I even had the union logo layered in the housing to avoid confusing with the 1TB red drive I already own. Truly was a great value at the Walmart special price of $49.98
Works great with my Galaxy Note S20. [This review was collected as part of a promotion.] I bought this to backup my old laptop and phone. My laptop uses USB 2.0, but this SSD was fast. My phone is a Samsung device and it works fantastic and is super fast while connected to the drive. Would recommend.
Small but mighty. I bought this as a backup for my MacBook Pro. I was impressed from the moment I opened the box. It is compact and lightweight but still powerful and fast. It also comes with both a usb-c to a and usb-c to c cables. I thought this was a nice touch for those of us that are used to needing dongles for almost everything.
Long lasting. [This review was collected as part of a promotion.] I bought this last year and it holds up great. Even leaving it unused for a bit won't bring problems to my files. I use it for school and have tons of Photoshop, adobe animate, cinema 4d, premiere pro files and they're all fine. Great for college students
Awesomeness. [This review was collected as part of a promotion.] In essence, the Samsung T7 (Red) 500GB SSD offers a combination of speed, security, and portability, making it a great option for individuals who need fast and reliable external storage for various purposes, including business, gaming, and media storage.

Samsung T7 4TB USB 3.2 Gen 2 Type-C Portable External SSD, Titan Gray

4.0
$999.99
in stock
Walmart.com
SAMSUNG T7 Portable SSD, 4TB External Solid State Drive, Speeds Up to 1,050MB/s, USB 3.2 Gen 2, Reliable Storage for Gaming, Students, Professionals, MU-PC4T0T/AM, Gray

User reviews

Samsung T7 solid state external drive is a long-lasting drive for storing computer files. In terms of access speed it outshines other drives. They are worth the expense.
Facts you would want to know before buying. I have seen transfer rates 500 which is awesome... not quite the 1,050 as claimed but that's probably my hardware. I recently wrote a program to copy and when checking my program for errors, I look at the properties of both the source and destination. I'm giving a 4 star rating because... it's actually 3.6 Tb available capacity (I know, all manufacturers do this... make it just enough so they can round up). Additionally, files require twice as much space to be saved on this Samsung SSD. I've attached a photo showing a folder on the Samsung SSD copied from a folder on a standard hard drive. It's clear to see the Samsung SSD requires twice as much space to save compared to a standard hard drive. So... 3.6Tb / 2 leaves about 1.8Tb of actual storage space. Even so, I did come online today to order another one for another job I have.

Samsung T7 1TB Portable Touch SSD USB 3.2 - Silver

5.0
$139.00 $189.99
out of stock
Walmart.com
The Samsung 1TB T7 Touch Portable SSD is a compact and secure storage solution that fits in the palm of your hand. Roughly the size of a few stacked credit cards, the T7 Touch is equipped with 256-bit AES encryption, a fingerprint reader, and password protection, so users can rest assured...

User reviews

Superb SSD drive, using as an external boot disk. Recently bought a new retina iMac with an internal fusion drive which is so slow. Bought and attached a 1TB T7 and now use that as the main boot drive to run all my design apps like photoshop and Illustrator which are now lightning fast. Much, much cheaper than buying Apple's over-priced internal SSD drives, plus I've left the internal boot drive untouched so I have a spare incase of issues with the external.
Perfectly works on my MacBook Pro 13 2018. Just received this SSD with 1 TB version and installed the original software on my MacBook Pro 13 2018. It is very important to press allow button on the security preferences menu, otherwise the Macbook will not recognise the software. The performance is amazing, the folder with the size of 26GB coppied for 30 seconds.
Faster than my Mac's internal SSD! [This review was collected as part of a promotion.] When I purchased the T7 Touch, I knew just from the specs that it had the potential to be super fast -- but would it be super fast with MY computer? I put the T7 Touch to the test with my 2015 MacBook Pro using the included USB Type A cable since my computer is too old for USB Type C. I decided I would use an 11+ GB video file that I recorded the other day for my test file. Not only did it copy with without hesitation or stutter, but it copied faster than I would have even expected it to copy from a brand new computer! But what happened next was an even bigger surprise. Something that is true for all SSDs is that the read speeds and the write speeds are usually different due to the way an SSD works. So I decided that I would test the video playback while opening the video from the T7 Touch SSD and see how the performance compared to opening the same video from my Mac's internal SSD. Opening the video with QuickTime Player seemed to take the exact same time regardless of where the video was stored. However, during video playback there was a very noticeable difference. I made an effort to skip ahead and back to several places throughout the video while playing in order to see how long it would take for the video to resume. When playing from my Mac's internal SSD, there was a little bit of lag before the video would automatically resume from the new point in the video; but when playing the video from the T7 Touch SSD, the video instantly resumed playing as soon as I chose a new spot in the video. I continued to do this test for a solid 5 minutes because I thought it might be a fluke -- but it worked every single time! Besides the performance, I was able to successfully use four different fingerprints to unlock the T7 Touch. To put it simply, the device unlocks with my fingerprint much faster than any cell phone I've used. In summary, I'm not easily impressed, but the T7 Touch has knocked my socks off so far.
Mobile phone. Hi , i have been told that i can not use this on my s10 for plug and play films and photos , yet it says it can hook up to phones and tablets... please can some one varify Many thank Steve
OK, not great. Depending on what operating systems you use this with, its OK, but not great. On MacOS it is not great. On my old MacBook Pro I could never eject it without force ejecting (which is always a little worrying). I assumed that was due to software I'd downloaded continuing to 'read' the SSD. However, on a new MacBook Air M2 with no software added yet (other than the Samsung software to access the SDD settings and security), I still need to force eject. The SSD works flawlessly with Android except Samsung Phones. On the Galaxy S10+ and now with my Galaxy S21 Ultra, as soon as you plug the SSD into the phone, you get a message to re-start your phone due to an issue with the SSD (though the SSD works fine and unmount). You have to re-start your phone to get rid of this persistent notification. This doesn't occur with other android phones. In my experience, Samsung products work fine with all other brands except other Samsung products...
Not connecting to my Mac. Great device, or so I've heard but I have tried to connect it and it is not registering!! I've heard of this happening before and I am sure it is an easy fix but it is coming up with the drive but not registering with the downloaded app to set it up!! I hope you can help me with this asap?? Thanks
Great with Windows, terrible with Mac or Samsung p. The 2-star rating applies to using this SSD with a MacBook Air (M2) and with Samsung Galaxy S21 Ultra and S8+ tablet. With windows laptop, the SSD works flawlessly. With a Mac and my other Samsung devices, it's a nightmare. On the Mac, the Samsung SSD laptop software doesn't show the SSD as attached and periodically I have to delete the software and reinstall it (which is why I'm visiting the Samsung website today). On the S21 Ultra and S8+, even if the Samsung mobile app is working and you manage to access the SSD, 2 things happen - the Phone and Tablet both want to 'fix' the SSD and re-format it (deleting all my files).. I ignore this, but it freaks me out every time. The second thing is that the Phone/Table send a persistent notification to restart the Phone/Tablet, which I eventually do just to get rid of the notification. I'm pretty sure the issue relates to having 'security' enabled and the structure of the drive having an un-protected volume and protected volume and the un-protected volume being 'ejected' when you log into the protected volume. I'm also sure this could be fixed (definitely by disabling security - but what is the point of an unprotected SSD??) or formatting the drive to only have one volume - but that's way beyond my technical capability. I just expect the SSD to work. Incidentally, I don't have any of these problems with Sandisk SSDs. Its funny that's the manufacturers Samsung devices seems to have the most issue with, is other Samsung devices...! Would I buy a Samsung SSD again? no way (unless it was to be used exclusively with a windows laptop)
Do not buy this if you are using macOS! Terrible user experience! I received my T7 SSD several days ago. The hardware is good, but the software is poor. My system is macOS Catalina 10.15.3. I installed the Samsung Portable SSD 1.0 as the instructions on manual, but it cannot recognize my device and always shows 'DISCONNECTED'. I tried many methods to fix the issue, including downgrade the software. However,it is still not working. Without the software, the fingerprint ID is useless, and you cannot encrypt the device. All in all, don't buy T7 if you are using macOS! [This review was collected as part of a promotion.]
samsung T7 touch. I have recently bought T7 touch mainly because of the security feature but it turns out that the password security or the finger print won't work if you are using a MacBook !! a huge let down after paying so much money for it. Avoid buying at all cost I hope I could return it back and buy a cheaper brand
not happy at all. I have bought T7 touch mainly because of the security feature but it turns out that the or the finger print won't work if you are using a MacBook.
  • MADE FOR THE MAKERS: Create; Explore; Store; The T7 Portable SSD delivers fast speeds and durable features to back up any endeavor; Build your video editing empire, file your photographs or back up your blogs all in an instant
  • SHARE IDEAS IN A FLASH: Don’t waste a second waiting and spend more time doing; The T7 is embedded with PCIe NVMe technology that brings fast read and write speeds up to 1,050/1,000 MB/s¹, making it almost twice as fast as the T5
  • ALWAYS MAKE THE SAVE: Compact design with massive capacity; With capacities up to 4TB, save exactly what you need to your drive – from large working files to game data and everything in between
  • ADAPTS TO EVERY NEED: Whether using a PC or mobile phone, count on the T7 for extensive compatibility²; It’s a true team player when it comes to heavy-duty application usage or file-saving
  • HI RESOLUTION VIDEO RECORDING: Record Ultra High Resolution (4K 60fs) videos directly onto the T7 Portable SSD with your favorite camera or mobile devices; Supports iPhone 15 Pro Res 4K at 60fps video and more³
  • ALL FOR THE SHOT: This strong, sturdy sidekick will help you see it through with shock resistance and fall protection up to 6 feet⁴; With its solid aluminum unibody construction, it’s made to withstand any adventure
  • WORLD’S #1 FLASH MEMORY BRAND: Performance and reliability from the world’s #1 brand for flash memory since 2003⁵; All firmware and components are produced in-house, including our world renowned DRAM and NAND, for quality and you can trust
]]>
https://compareinsight.com/product/samsung-t7-portable-ssd-1tb-external-solid-state-drive-speeds-up-to-1050mb-s-usb-3-2-gen-2-reliable-storage-for-gaming-students-professionals-mu-pc1t0t-am-gray/feed/ 0
Seagate Portable 5TB External Hard Drive HDD – USB 3.0 for PC, Mac, PS4, & Xbox – 1-Year Rescue Service (STGX5000400), Black https://compareinsight.com/product/seagate-portable-5tb-external-hard-drive-hdd-usb-3-0-for-pc-mac-ps4-xbox-1-year-rescue-service-stgx5000400-black/ https://compareinsight.com/product/seagate-portable-5tb-external-hard-drive-hdd-usb-3-0-for-pc-mac-ps4-xbox-1-year-rescue-service-stgx5000400-black/#respond Thu, 17 Jul 2025 11:06:30 +0000 https://compareinsight.com/?post_type=product&p=6939

Seagate Portable 5TB External Hard Drive HDD Slim - USB 3.0 for PC Laptop and Mac (STGX5000400)

5.0
$219.99 $304.89
in stock
Walmart.com
Simple, compact, and PC compatible, the Seagate Portable Drive gives you additional on-the-go storage and lets you take along large files when you travel.

User reviews

Best drives I ever bought. First off I have always likes Seagates quality in their HDD. This drive model is no exception. My seagates run circles around my WD's are cheaper for the same capacity and last longer. This last purchase was to copy the info from my two oldest WD drives and consolidate them. I would highly recomend this drive model as it really is cheaper in the long run and is quite affordable for 5 TB storage.
It is great. I transferred 2 TB of information to this external hard drive (information it took years to build) and still have more than 2 TB left. It is so nice to be able to keep everything in one location.
Excellent Product! Got here very quickly, even with it being Christmas time. Quality product for a good price! Would highly recommend this company and this specific external hard drive.
5 THD. Nice HD easy operation and a good price. XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXxxxxxxxx
5 TB Seagate Portable Drive. It was easy to buy on Walmart.com at a very reasonable price. It was easy to hook up to my Lenovo Win 10 PC. I have made it as a back up drive for my PC. It is fast and easy to work with. Previously I had a 1 TB portable Seagate drive and now this 5 TB drive has replaced it because it was full of disk space. I strongly recommend it.
Great external storage for Tablo TV tuner/recorder. Purchased to use as external storage with a Tablo gen 4 TV tuner. Works seamlessly. Very pleased. Just wish I had purchased a larger drive.
works straight out of the box, no issues. worked right out of the box, it has decent speed. I am using it as a back up drive I copy to every once and a while. it is working pretty good for that.
Great product. Great product. Recommend to everyone that needs one
It is a gift, it has not been opened nor tested
it's a present so i don't know yet about performance.

Seagate One Touch 5TB External Hard Drive Black USB 3.0 (STKC5000400)

4.0
$140.05 $199.99
out of stock
Walmart.com
Looking for an external portable hard drive that’s small enough for aloaded laptp bag, spacious enough for loads of content, and offersmassive capacity? Meet Seagate One Touch portable storage. Withsleek colors to choose from and up to 5TB of serious space for a growingdgtal library, this...

User reviews

This is exactly what I was looking for. I've been using Seagate 4TB USB 3.0 external hard drives for six years. Then I saw this Seagate 5TB USB 3.0 external hard drive and I must have been in the right time frame and was able to buy it for less than the 4TB drive. I really like that extra terabyte of memory as some of it is used in disk operation. Thank you for a terrific deal!
Seagate external hardrive. Easy install, instructions easy to understand, easy to use, makes my computer so much faster since i have gotten all those files off of it! Why didn't I get this before?
Rock solid, quick 5TB portable drive. It is a great portable drive. USB powered, fast and 5TB of storage. I own several of these and that have been extremely handy and hold up well to being carted around with my laptop.
I think it's a must-have for extra storage. I love that you just plug it in and it's ready to go
Even more capacity than shown! Bought one locally instead, amazing service online!
Good brand name at a reasonable price
Small. Smaller then I thought it would be but Seagate External Hard drives are my go to.
Review. Product works great. Good value.
great storage. has held out longer than I thought. easy to use and holds data.
Slow and Gets Hot. A good deal for inexpensive storage. But be mindful that it heats up and doesn't offer the fastest data transfer.

Seagate Technology HD 5TB USB 3.0 Portable Drive

$133.93 $155.77
out of stock
Walmart.com
If you are a gadget lover, our Electronics catalog is your dream destination. Choose from hundreds of gadgets and accessories to suit different uses and add some entertainment, facility and convenience to your life.Specifications Capacity: 5TB - SKU: ZX99AZTY49665

5TB Expansion Portable USB 3.0

5.0
$188.02
out of stock
Walmart.com
Sleek and simple portable drive design for taking photos, movies, music, and more onthego Draganddrop file saving USB 3.0 powered Automatic recognition of Windows and Mac computers for simple setup Reformatting required for use with Time Machine Enjoy peace of mind with the included limited...

User reviews

Great portable hard drive. [This review was collected as part of a promotion.] This is my go to hard drive now as it is very compact yet has a ton of storage. I used to use a large bulky hard drive and it made it so much harder to carry around. This one literally fits right in my pocket. The color of the hard drive is a very subtle gray that blends in on your desk yet looks very profesional. Another great thing is the speeds. I frequently have to store large files for my job and this is at least twice as fast as my previous drive. I definitely recommend this to anyone in the market for a hard drive.
Lifesaver. [This review was collected as part of a promotion.] If you're like me and has a job that is entirely computer based, I suggest you get one of these. I have loved being able to have a backup of important information I need and having that security of knowing that it'll always be in a place I can find. It holds so much so it'll take a long time before it ever becomes full for me which I also love.
Sleeek! And powerful! [This review was collected as part of a promotion.] Great machine! Wowoww I rememver when these hard rives filled up a room.! They were not able to fit in your pocket! These are powerful and fast! I think enough to have to last a lifetime. It's great piece!
Great Hard Drive! [This review was collected as part of a promotion.] I started using this as an added space drive for my plex server, the USB C connection does well and haven't noticed any performance issues with streaming. Glad it's also environmentally friendly casing.
Keeps all my memories! [This review was collected as part of a promotion.] This was much needed at my house. We have literally thousands of photos, videos, and other files that were weighing down the space on our laptops and phones. My favorite thing about this device is how easy it was to set up on our computers. It really comes with everything you need and it is very user friendly. We were able to transfer tons and tons of files and it barely made a dent in the storage space. My second favorite thing is how small it is! It is slim and short so it fits almost anywhere! I don't know how something so small fits so much data! Highly recommend!
Stylish Powerhouse! [This review was collected as part of a promotion.] So, I got my hands on the Seagate Ultra Touch External Drive, and let me tell you, it's a total winner! Looks and Feels Awesome: The first thing you'll notice is that slick fabric finish – it's like a tech accessory's fashion statement. Plus, it's so compact that it's practically begging to join you on your adventures. Fingerprint Magic: They added a fingerprint sensor, yep, just like your phone. Super cool and secure. Now my files are basically Fort Knox protected, but without the hassle. Loads of Space: With 5TB, it's like having your own digital universe. Dump all your stuff, and still have room to spare for, well, more stuff! Fast as Lightning: This thing moves data like a champ. USB 3.0 means no waiting around. It's like "zap, done!" Transfers are a breeze. Chill and Quiet: It's chill even when it's working hard. No noisy drama – just gets the job done without making a fuss. Plug and Play: Setup? Piece of cake. Works with both Windows and Mac, so no tech gymnastics required. And that Toolkit software? Makes life simpler than ever. Final Word: The Seagate Ultra Touch is like that awesome buddy who's got your back no matter what. Whether you're a digital nomad or just want some extra space, this drive nails it. Secure, speedy, and stylish – it's a must-have in my book.
Lots of storage. [This review was collected as part of a promotion.] 5TB is more memory than I know whah to do with and knowing I'll never run out is reassuring. I use this to primarily store go-pro videos and pictures from my computer. It's a great external drive. I recommend.
So Far So Good! [This review was collected as part of a promotion.] Right out of the box it was a unique hard drive. I was actually not expecting it to have the look and feel that it did. Most hard drives come with a polished, shiny plastic body. This one was more of a textured matte body, which I personally really enjoy. The hard drive hooked up to my Mac without issue. The software that's preinstalled for both Mac/PC fired up without issue. The capacity was as expected and the same for the expected speeds. This drive is currently being used as a system backup and is being written to on a regular basis. So far, no failures or any signs of it. I would highly recommend it! Seagate has always had great hard drives!
I love it. [This review was collected as part of a promotion.] First I love the compact size and then the price for 2T is very good. It wasn't hard to set up with my MacBookPro. Once I went through the downloaded installer and was able to go to the Time Machine in my system preferences and check this as my preferred backup device. The first backup is a little over one hour but I have a lot to download so the time to do this is fine with me. I also liked the fact that it came with a USB-C adaptor so I didn't have to go to an Apple dongle. I have used G Drives in the past but the prices are extremely high now if all you are doing is backing up to your personal computer. I am not a tech savvy person but I didn't need any tech support to get this running.
So far so good. [This review was collected as part of a promotion.] I used this to backup my laptop. The instructions were simple and easy to follow. Took about 14 minutes to back up 500GB of data. My only issue is the USB c cord seems to unplug easily from the drive. So I wouldn't move it around when in use and put it somewhere the dogs won't bump it.

Seagate Game Drive for PS5 5TB External HDD - USB 3.0, Officially Licensed, Blue LED (STLV5000100)

4.0
$219.99 $345.75
in stock
Walmart.com
Seagate Game Drive for PS5 5TB External HDD - USB 3.0, Officially Licensed, Blue LED (STLV5000100)

User reviews

Great gift for my husband. My husband loves to download new games and now he has so many. He used to have to delete games to get new ones. Now he's so excited that he's barely used any storage. I would highly recommend everyone to get this.
youre paying a little more for the esthetics, otherwise its a simple HDD, if younwant something faster you'll need a SSD
Great product. So far I'm happy with my purchase. I had thoughts of purchasing a game drive and Seagate game drive has been a game changer for me. I look forward to taking full advantage of the drive.
Extended memory. Product work really wonderful with my ps5 we love that now we have more room for more game and memory
Great product!! It's great and it's necessary for gamers who switch between games often package was fast secure and reached me in an incredibly quick amount of time very satisfied with the product
It was cheaper at the store then your website
More space for more games. I still have use all the memory yet but looks awesome and hookup was easy as plugin it in
great product for gaming. I like the fact that it can be utilized for additional storage for my gaming platforms and devices
So far so good way better price than Amazon !
It does not work. That I use for 1 day and now it does not want to work I can my games do not buy this poor product Nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn

Seagate Game Drive for PS5 2TB External USB 3.0 Portable Hard Drive Officially Licensed (STLV2000302)

4.0
$129.00
out of stock
Walmart.com
Extend your gaming storage with Game Drive for PS5™. Officially licensed for PlayStation®, this HDD works seamlessly with PS5 and PS4™ consoles—while adding a splash of Blue LED lighting to any gaming atmosphere. Easily archive your PS5 games on the drive until it’s time to transfer and play...

User reviews

Excellent piece of electronics . Love the fact it does NOT have its own power source. 5TB is definitely enough and the size is perfect for my set up. Highly recommend if you have if you have invested in a 100 plus games. Has taken my PS5 experience to a new level. Good job Seagate!
It will do what you need it to do. It great for storing your PlayStation games on it but the only games that can be played from it are PS4 games you can store PS5 games on the drive but you'll have to transfer the games back to the console to be able to play them with that being said I would wait for a sale before picking it up because the retail price seems to be a bit high for what your getting
Some items are a lot more expensive on the website than in store which means I go into the store to purchase the items rather than shopping online and in most cases you would find that items are cheaper or offer discounts when delivered or purchased online
PS4 storage. I have a PS4 and a PS5, I'm playing the PS4 till I can't use it any longer and I had an idea to start fixing it so I have ordered new parts for it and everything so imma make it the best running PS4 in 2025
Great product. It is a great product. Only thing i wish it would have mentioned is that ps5 games if downloaded to it you will have to copy it every-time in order to play it on the console. So only ps4 games would directly to the memory on seagate and ps5 still on console. Still an amazing product
5 Stars for PS4 useage. 3 stars for PS5 useage. It is a nice, quality storage device for a PS4. Had I known that it was incompatible with PS5, I would not have purchased it. However, it IS useful for storing your PS5 titles if you don't mind the inconvenience of moving the titles back and forth each time you want to play a PS5 title.
I was unaware that with the external hard drive you still have to move your games from the external hard drive to your actual hard drive to play them thats whatever though. the thing that really makes me upset and Mad is that it literally just took a crap on me I only had it for 2 months waste of $85. definitely will not purchase it again
Not for ps5 games. Can not play ps5 games on it so there's no point to store them on it just to have to redownload them on console when you want to play them PS4 games are the only ones you can play while stored on it
transferring files more than playing the game. I like the fact that it holds the games!! what I didn't like was the fact that you have to keep deleting and uploading the games back and forth instead of playing them directly from the hard drive!! I spent more time waiting for the game to either transfer to the hard drive or download to my system rather than actually playing my game!! I figured by the hard drive being connected to the game system, you could play straight from the hard drive!! but I was wrong!! I should have just invested in the internal hard drive instead
Doesn't last. I have purchased two of these. They work for a couple of weeks and then just stop working for no reason. The second one stopped working at 30 days after my purchase so now I can't even return it. So frustrating. DO NOT PURCHASE THIS!!!

Seagate SGTSTJL5000400 USB 3 Basic External Hard Drive, Gray - 5TB Capacity

5.0
$139.46 $181.96
out of stock
Walmart.com
Basic External Hard Drive, 5 TB, USB 3.0, Gray, This external hard drive delivers simple drag-and-drop backup in a lightweight, compact design. The result Extra storage for your computer in a portable hard drive that's perfect for life on the go. Features Expand your computer's capacity with a...

User reviews

Positive. Fast delivery and it works what could be better.

Seagate Game Drive STKX5000403 5 TB Portable Hard Drive, External, Black

4.0
$219.99 $238.00
in stock
Walmart.com
Seagate Game Drive STKX5000403 5 TB Portable Hard Drive External Black USB 3.2 Gen 1

User reviews

Great storage if youwant more space get it. I bought a 2TB expansiin card for my Xbox S and it is tge best. I have not been disappointed at all. I would recommend it to anyone. Like the COD it is growing and you will need a 1TB just for this game soon.
Please read this!!! This product costs more, and its storage is the same amount as the Seagate Storage Expansion Card for Xbox Series X|S and yet does not do the same thing. The title and description of this product is highly misleading for those who don't understand much about Xbox. Please make a product that is like this but is compatible to play optimized xbox games off of. You are scamming so many people as all new xbox games are optimized. This product alone is great for what it does, but its not 2016 anymore, its just about 2025. Quit scamming customers.
Misleading Description for Product. Product description says compatible with X/S games. Very misleading! You cannot play X/S games. I would not order unless you are intending to use it as transferable storage.

(4 pack) Mac's Bar-B-Q Fried Pork Skins, 4 oz Bag

5.0
$8.32
in stock
Walmart.com
At Mac’s, our mission has been the same since 1932: cook the best pork skins and cracklins around. Our long-standing focus on taste and crunch means we select only the highest quality ingredients to create the satisfying flavor and unique texture you love. Our naturally low-carb snacks fit many...

User reviews

My husband loves these Mac pork rinds better than any other brand and we can only find them at Walmart. Great value too!
I can't stop eating these pork rinds. This is my first purchase of Mac's BBQ Flavored Fried Pork Rinds. They are so so good. I got them this morning. The bag is almost empty. I totally recommend this brand of pork rinds.
Delicious low carb snack. This low carb snack i very tasty, although it is high in cholesterol.
these are my favorite pork fines
what a great price. these are absolutely delicious I must have if you're on a low-carb diet
Good. First choice.
fine treats. I enjoy them
Tasty yet salty. My husband loves these. He always wants me to buy pork rinds for a quick low carb snack. He does always say that he wishes that they were less salty. I wish there was a low sodium version.
The best I've found. They don't need to add smoke flavor. I'm sure it's bad for you
Tastes rancid. These taste rancid. The use by date is Aug 12th, so I don't know if they used rancid oil or what. A full bag is now in the trash.
  • Easily store and access 5TB of content on the go with the Seagate portable drive, a USB external hard Drive
  • Designed to work with Windows or Mac computers, this external hard drive makes backup a snap just drag and drop
  • To get set up, connect the portable hard drive to a computer for automatic recognition software required
  • This USB drive provides plug and play simplicity with the included 18 inch USB 3.0 cable
  • The available storage capacity may vary.
]]>
https://compareinsight.com/product/seagate-portable-5tb-external-hard-drive-hdd-usb-3-0-for-pc-mac-ps4-xbox-1-year-rescue-service-stgx5000400-black/feed/ 0
WD_BLACK 1TB SN8100 NVMe SSD Internal Solid State Drive – Gen 5 PCIe 5.0×4, M.2 2280, Seq. Read Speeds Up to 14,900 MB/s, Best for AI Applications, Gaming, and Video Editing – WDS100T1X0M https://compareinsight.com/product/wd_black-1tb-sn8100-nvme-ssd-internal-solid-state-drive-gen-5-pcie-5-0x4-m-2-2280-seq-read-speeds-up-to-14900-mb-s-best-for-ai-applications-gaming-and-video-editing-wds100t1x0m/ https://compareinsight.com/product/wd_black-1tb-sn8100-nvme-ssd-internal-solid-state-drive-gen-5-pcie-5-0x4-m-2-2280-seq-read-speeds-up-to-14900-mb-s-best-for-ai-applications-gaming-and-video-editing-wds100t1x0m/#respond Thu, 17 Jul 2025 10:54:27 +0000 https://compareinsight.com/?post_type=product&p=6931

WD_BLACK 1TB SN850P NVMe SSD for PS5 Consoles, Internal M.2 2280 Solid State Drive - WDBBYV0010BNC-WRSN

5.0
$229.99 $283.78
in stock
Walmart.com
SN850P NVMe SSD for PS5 Consoles, 1 TB, PCIe Gen4Get the ultimate gaming edge over your competition.

User reviews

Kind of expensive but very impressed. Got it last night installed it %26 formatted it as it instructs you to do. Then moved 400 gig games %26 applications in 4mins over to it %26 started using it. I could automatically tell the difference in speed! Things are so much faster. Very impressed
Best purchase for my PS5. If you want to expand your PlayStation's storage, this is the best drive to get. I use this just to store all my PS5 games. 4TB of storage gives you the opportunity to store massive amounts of games and data.
A much needed upgrade for today's large games. The fact that I can play my games directly from the new drive, both PS5 and PS4 games, is really nice. Was a quick and simple install and format. Highly recommend.
PlayStation branded 4TB. Easy to install. Be sure you place metal spaces under your SSD not on top touching screw. Performance is as advertised. You can move games from internal storage to the SSD and vice versa.
Good PS5 upgrade. It was very easy to install in my PS5 and gave me so much more memory space.
Perfect for almost unlimited PS5 storage. Very easy to install and use on the PS5. It allows me to never worry about storage ever again.
works just as it should 8tb ssd for ps5
perfect. install very easy in my playstation 5 and set up was easy also.
The Best Overall SSD For The PS5. A well-made SSD that provides the speed and reliability needed for a hard working game console. It can get hot, but it hasn't overheated on me yet. The heatsink seems innovative, and uses 'tiles' rather than 'fins.' It may be a little overpriced, but users should by this with confidence that it will just work.
PS5 internal storage. Just got this product in. I bought it for my son for Christmas. I will update after he installs the product.

Western Digital Black SN8100 WDS100T1X0M-00CMT0 1 TB Solid State Drive - M.2 2280 Internal - PCI Express NVMe [PCI Express NVMe 5.0 x4]

5.0
$229.99
in stock
Walmart.com
Technical Information Storage Capacity: 1 TB Platform Supported: PC Drive Performance Random 4KB Read: 1600000IOPS Random 4KB Write: 2400000IOPS Endurance (TBW): 600 TB Maximum Sequential Read: 14.55 GB/s Maximum Sequential Write: 10.74 GB/s Mean Time Between Failures (MTBF): 199.6 Year...

WD_BLACK 1TB SN850X NVMe SSD, Internal Gaming Solid State Drive without Heatsink - WDS100T2X0E-00BCA0

5.0
$249.00
in stock
Walmart.com
Crush load times and slash throttling, lagging, and texture pop-ins with the WD_BLACK SN850X NVMe SSD. Available in capacities of 1TB up to 8TB, this gaming drive is built for top-tier performance. With 7,300MB/s speeds (1TB - 4TB models) and a heatsink option to maintain performance, you can...

User reviews

WD SSD M.2 DATA card. This SSD works very well and it's reliable, I use it for storage / backup of files on my laptop. I prefer higher end SSD for DATA over cheeper one, because of experience with computers. Cheep SSD M.2 cards don't work as well, and you could lose your DATA when they fail!
Top Quality SSDs or HDDs. You can never go wrong with WD. Their products are top notch. When they say 5 million hours, that's just what is means. I still am running a hard drive I bought in 2005 in my PC. It may be approaching near end of life, but as long as it keeps running, I'll continue to use it. My recent purchase (WD Black 2TB SDD I now use as a storage backup. Very simple to install and get it up a running. I am confident it will give me exceptional service just like my current WD 300GB 10K VelociRaptor hard drive. I have absolutely no problem recommending WD products to friends, family, co-workers, or anyone else.
Blazingly Fast with No Issues. Running 2 of the 2TB SN850X in an Alienware laptop with RAID 0. Flawless performance every time. Upgrade from Samsung 1TB drives and I instantly noticed a boost in speed when booting and game load time.
Works as expected! Speeds are accurate and so far so good!
Fast and cheap. Super fast. Great for video editing and some games.
W.D Black SSD. It's amazing, no other words you should also use 2 tb instead if you can.
Performance & Value. Performance & Value that beat the competition hands down.
Price was average nothing special.
Don't buy. Never received the item and customer service was no help at all
Never received this product!!!

WD Black 1TB SN770 NVMe Internal Gaming SSD Solid State Drive - Gen4 PCIe, M.2 2280, up to 5,150 MB/s - WDBBDL0010BNC- WRWM

5.0
$58.95 $85.00
out of stock
Walmart.com
Level up your entire gaming experience with the WD Black SN770 SE NVMe SSD. Step up to PCIe Gen4 technology (backward compatible with PCIe Gen3) with an SSD that delivers blistering read speeds up to 5,150MB/s to help optimize your gaming rig's performance and your own. Crush your load times so...

User reviews

shipping was fast price was really good in fact the one terabyte version was only available at walmart. especially for that price. installation went well replaced the 128 GB Toshiba solid state drive. noticed and Improvement in transfers needs. got to love Western Digital. it's all I buy for hard drives and solid state drives.
These worked with my QNAP. It wasnt too hard to use. the NVme items in tme NAS worked. I do have knowledge of how to install these types of things already. These came pre-opened and were not indicated of that on the listing, which i was disappointed in.
If your system is slow try this first. Have bought 3 of these now and installation and performance are great. Everything is faster than the hard drives they replaced: loading the operating system, booting the machine, upgrades of the system (including large ones) and downloads. Excellent upgrade and so far even the first one which is about 1-1/2 years old still performs flawlessly.
Great product, pick up was weird. Ordered for store pickup, I was told I had to park in the lot and call in. Felt kind of lame sitting out there for somebody to walk out with a small item. A pick up counter would have been better.
The quality was good product and a good timely matter when I ordered it and there was nothing broken or anything like that. Only thing is that the price was a little high other than that all
Very decent NVME if you can get it for below MSRP. Very decent NVME when available at a discount. Do not buy these at MSRP, you can do better. Predictable performance, and speeds are as advertised. In terms of installation, things are fairly standard but with a caveat. If you plan to add a heatsink, be aware that the chip surface is highly uneven. This necessitates that you either choose a heatsink with a thick thermal pad included, use thermal putty, or provide your own thermal pad to fill in the low spot where the controller sits. This model is single sided, chips on one side only.
Fine SSD. I'll start with its flaws, since they're minor and few. It doesn't come with any installation instructions, nor does it come with the M2 screw needed to install it. Other than that, this SSD is great. The access speed is amazing and the overall storage is ~1.86TB (most advertised TB drives are like 930-950GB so…). If you don't see it in your file explorer, you need to format it which is really easy to do, just look up “How do I format a SSD on windows 11”, assuming you use Win11.
Solid NVME SSD! I thought that this SSD was pretty good! Western digital is a reliable brand, the terabytes written for its maximum lifespan is pretty high for his class i thought that this SSD was pretty good! Western digital is a reliable brand, the terabytes written for its maximum lifespan is pretty high for his class , 650 TB for one gigabyte 650 TB for one gigabyte, And it runs pretty low temperature even in my nic and it runs pretty low temperature In my cramped mini PC. A well priced reliable SSD that has pretty good speeds for GEN four a well priced reliable SSD that has pretty good speeds for GEN four
Good luck with a warranty replacement. Don't get me wrong, the product itself is a good product And I received it quickly and it was a great price but it received one star from me because of this and you should know this also..... This review is for what happens when the product fails under warranty! Let me tell you, it's a nightmare big time! Good luck! Western digital SSDs are now warrantied under SanDisk also. They seem to have lost my warranty replacement and the problem is they cannot speak directly to the warehouse that ships it out. After doing some digging now I know why! I've even spoken to a manager high up with SanDisk and he can only communicate via email. But here's the thing, what a little due diligence I have the address and the phone number of where my warranty product would be coming from. The manager from SanDisk was amazed wonder why. Again the product might be okay but forget about the warranty and if that's what you're looking for you will be treated like Joe blow's SSD cards or SSD sticks. This is the facility for replacement, 1784 Pan American St %23101, Calexico, CA 92231 The name of the location is actually, Teleplan Service Logistics, ph%23 7603579644 ext 2003 Needless to say the SanDisk upper management was totally shocked that I got all this information! You'll get a mailbox at that extension but go ahead and fill it up! Western digital SSDs warranty have went downhill completely and obviously so is SanDisk. I'm going to be filing a better business bureau report also but hey, I did the legwork if you have any problems this is the information.
The hard drive was damaged or corrupt. it wouldnt boot up most of the time. when it dod it would eventually blue screen the pc. had to put the old one back in. most unfortunate

WD_Black 1TB SN850P NVMe SSD for PS5 consoles - WDBBYV0010BNC-WRWM

5.0
$216.99
in stock
Walmart.com
Officially licensed for PlayStation®5 consoles, the WD_BLACK SN850 SSD for PS5 consoles allows you to store and play PS5 games and PS4 games. The all- in-one heatsink SSD design makes installation worry-free in your PS5TM M.2 expansion slot. Instantly expand up to 1TB* of additional storage to...

User reviews

Amazing. Double your memory! If I would've known a few years ago it was this easy to not have to deal with an hard drive and double your memory of the ps5 I would've been a happier person. Take off the cover, install and boom! An extra TB of memory. Got it at a great price too on sale!
I needed extra memory for my ps5 for awhile now. So happy I found this at a great price. Works just perfect and now I have tons of room for new games.
PlayStation branded 4TB. Easy to install. Be sure you place metal spaces under your SSD not on top touching screw. Performance is as advertised. You can move games from internal storage to the SSD and vice versa.
Highly Reccomend. Just works, easy to install and PS5 recognized it immediately. I was finished with the whole process in 5 minutes and now have an extra 20 games on demand.
The one I got had a defect. Worked for a day.
upcharged when ordering online (OL 106 Store 666). the product itself is fine it does what it do. the only issue i have is in my store that i work at the same product was $66 but because my coworkers that work in electronics like always can never be found so i had to order online for $106
Product was not in packaging. Had to return it and re-buy it. Bought it for my son for his birthday picked it up from Walmart curbside put it in a gift bag put it in the closet gave it to in the next morning. He thought I was pulling a little joke saying where is it at? This is an empty box I looked in there and it was empty Upon further inspection could see that box had already been opened at the other end.
Horrible. Ps5 slim has an issue with these. You hear the audible click when installing the memory, so you know it's correct. However I have had my ps5 crash 3 different times due to this storage. I removed it completely and now ps5 works good as did before. WD and Sony have not helped one bit with my problem.
? Not working. My ps5 is not reading the ssd drive I've installed properly and troubleshooted not reading anything even updated the ps5
Hard drive ineffective. I had it delivered to me %26 the box was cracked open. I put it in my PS5 internally %26 it shut my whole system down. It'll get to 50% %26 my entire screen would go black along side with my PS5 shutting down like I said previously before.

WD_Black 1TB Internal SN8 50X Game Drive NVMe Solid State Drive w/Heatsink

5.0
$299.00
in stock
Walmart.com
General Information HIGH-PERFORMANCE NVMe™ STORAGE WITH PCIe® GEN4 TECHNOLOGY Crush load times and slash throttling, lagging, and model pop-ins with the WD_BLACK™ SN850X NVMe™ SSD, the purposebuilt gaming drive that lets you compete at your absolute peak. Get the ultimate gaming edge over your...

User reviews

Added it to my sons PS5 for more game storage, easy to put in. PS5 asks you to format it. It was easy and quick. Added a 2TB one to my other sons ps5 a couple years back and its still working fjne. Western digital has been a good brand for me. (both drives had the heatsink, which was recommended from ps5 i believe.
Works for the PS5. Came in a small brown box and It fits perfectly on the PS5 and seems work great ! Highly recommend, it took about 5 days to come in and was worth the wait :))
Great buy!! Purchased to install on our PS5. It's been the best investment I made for my console. It makes downloading and installing games a lot easier, without having to erase old games to make room for the new ones. Installing was super easy. It's a lifesaver, highly recommend it for those that keep up with the latest games.
No issues easy installation
a satisfied customer. i finally got something that worked and im glad. i honestly have more trust in walmart than other online stores.
works great got it fast got more room in my ps5 so I'm happy no need for the pro games download on to it run fast look better
Like the size and speed it provides. Easy install.
Easy to use
Sometimes…. This appears to be a nice SSD. I had an open N.2 slot on my mother board and it fit right in. The only problem I have is Windows 11 finds it only about half of the time from a restart. Nothing is different on each start up to explain this. When it is there, the BIOS shows it and all is well. When it doesn't, it also is vacant on the BIOS just like no SSD is installed. I don't have a spare to swap in to prove if the SSD is intermittent and at fault or if the computer set up is randomly missing the new SSD. It is quite annoying and I haven't found the fault yet.
Not identifying as a Western Digital drive... I received this drive in record time, and the cloning process was seamless. However, my device manager does NOT identify this as a Western Digital (WD) Black drive, instead, it is identified as a NVMe Kingston OM8PDP3256B-AA1 Disk drive. Nowhere in the ownership tree for WD do I see any mention of any relationship with Kingston, and obviously raised a few red flags. So far, it appears to be faster than the WD Blue SSD that it replaced, but there's still a slight chance I will return this item for an authentic WD.

WD_BLACK SN850X NVMe Internal SSD, 1TB - WDBB9G0010BNC-WRWM

5.0
$248.00
in stock
Walmart.com
Strap in for breakneck gaming speeds with the WD_BLACK SN850X NVMe internal SSD. Crush load times and slash throttling, lagging, and model pop-ins for a smooth, fast experience that lets you compete at your absolute peak. This purpose-built gaming drive comes in the capacity of 2TB. With the...

User reviews

Great. great product, just wish the playstation had more memory with it should be able to play all my games like back in the day but this helped and i dont have an external drive hangin out the back
This is an internal drive, so i did not rate its battery life. It is performing very well, and is well worth it.
love the sells transfer of data. especially the software used to transfer data/clone drive.
You can rely on this product brand(Western Digital)
Harddrive. Does exactly what a harddrive is suppose to do.
No games left behind. Best investment ever!!
great ssd. great product helped with storage in my computer
Installed perfectly on my ps5 super fast speeds I love it!! And it was on sale
not as described performance wise.
i wanted an internal hard drive that plugs into my nvr camera system but that dudnt have 2 plug connects. still gotta get one.

WD_BLACK 8TB SN850X NVMe SSD, Internal Gaming Solid State Drive without Heatsink - WDS800T2X0E-00CDD0

5.0
$1,599.99
in stock
Walmart.com
Crush load times and slash throttling, lagging, and texture pop-ins with the WD_BLACK SN850X NVMe SSD. Available in capacities of 1TB up to 8TB, this gaming drive is built for top-tier performance. With 7,300MB/s speeds (1TB - 4TB models) and a heatsink option to maintain performance, you can...

User reviews

This thing has a huge capacity. Finally, an affordable 8TB NVMe drive! And of course it is incredibly fast, while being reliable. This is my second WD NVMe drive and I'm happy with this purchase. Shipping was direct from Sandiak, which owns WD. Shipping was fast.
Save money. I'm using it for a PS5 internal memory expansion. Just doesn't have the PS symbol save money. The exact model that the PS sells for more money.
Love this products works amazing with the Ps5 slim
easy upgrade for PC or PS5. eaay to install and reformat
good price work good easy install in my playstation 5
Works like it should for the ps5
awesome. great ssd. glad that i can now play lots of more games on my ps5 and love the load speeds.
Better than other brands. Not the first time we have bought this brand. Very reliable.
Bad service wrong product
I never received the item

MSI M461 M.2 2280 2TB PCI-Express 4.0 3D NAND Internal Solid State Drive (SSD)

5.0
$320.00
in stock
Walmart.com
MSI M461 M.2 2280 2TB PCI-Express 4.0 3D NAND Internal Solid State Drive (SSD)

User reviews

Ps5 SSD. Got it for my Ps5 and as of right now I have no complaints. Especially with some games loading EVEN faster! I'll probably be getting another one for my PC
Worth the purchase! Fantastic price and easy to install. Was confused on how to partition it for storage but device manager detected it and patitioned it from there.
No issues. Bought for a HP Elitedesk G3 800 SFF computer intel core i5 7500k 16gb ram. No compatibility issues on the HP 299 MB, worked right away.
Works great and keeps me going without a hitch
Value for money. good price and acceptable performance.
review. made my pc work faster i recommended
MSI NVME Drive Review. Works great, using it as a backup drive for my laptop and it backs up in minutes compared with the hard drive I was using before. Good amount of storage for the price. Haven't had any problems with MSI for a number of other tech products I've purchased.

Patriot Viper VP4300 Lite 4TB Internal SSD - NVMe PCIe Gen 4x4 - M.2 2280 - Solid State Drive - VP4300L4TBM28H

4.0
$519.99 $629.99
out of stock
Walmart.com
Built with the latest PCIe Gen4 x4 controller, fully compliant with NVMe 2.0 and fully compatible with both PCs and the Playstation 5, the VP4300 Lite is the latest in Viper Gaming’s high-performance solid state drive line. Featuring Viper Gaming’s newest DRAMLESS design, gamers can anticipate...

User reviews

Best 4TB nvme.2! Best 4TB nvme.2! Lots of FAST memory speed!
Great drive and price. Great addition to any system. Tons of storage and a great price.
Fire Hazard. SSD ran @ 60 degrees idle and shot up to 77 degrees under load, SSD has a fake heat spreader.
  • Drastically enhance your gaming and content creation experience with PCIe Gen 5 technology.
  • Enjoy breakneck sequential speeds of up to 14,900MB/s(2) read, 14,000MB/s write,(2) and over 2,300,000 IOPS (2TB – 4TB models).(1)
  • Our TLC 3D CBA NAND helps ensure your experience is exquisite, no matter if you’re gaming or working. Enjoy over 100% more power efficiency than PCIe Gen4 (4), and an average operating power of 7W(2) or under.
  • Up to 2,400 TBW(3) (4TB(1) model) endurance means your machine can handle even the most intense tasks.
  • Hold your biggest projects and still have room for your game library with capacities up to 4TB.(1)
]]>
https://compareinsight.com/product/wd_black-1tb-sn8100-nvme-ssd-internal-solid-state-drive-gen-5-pcie-5-0x4-m-2-2280-seq-read-speeds-up-to-14900-mb-s-best-for-ai-applications-gaming-and-video-editing-wds100t1x0m/feed/ 0