EuroTruckParts
1442292 Window Lifter Motor | ISO 6726-1 Heavy-Duty Cable Assembly
1442292 Window Lifter Motor with Cable Assembly Integration System
1442292 Window Lifter Motor Technical Specifications
The 1442292 Window Lifter Motor (1442292) employs dual-stage planetary gears with hardened steel teeth for 48W power transmission. Engineered for SCANIA's heavy-duty cabs, this assembly maintains precise 24V operation across extreme temperatures (-30°C to +85°C). PTFE-coated cable guides prevent binding during 50,000+ operational cycles. Direct replacement compatibility with legacy 1366761 and 2303350 units through standardized mounting interfaces. Anti-backlash mechanism eliminates play in window regulator systems. Weather-resistant seals with triple-lip design prevent moisture ingress in harsh environments. Precision alignment slots ensure proper cable tension during installation of this 2572352-equivalent unit. EMI-shielded windings maintain signal integrity in electronic-controlled cabs.
1442292 Cross-Model Compatibility Matrix
Cab Configurations
- ▶ SCANIA P94/P124
- ▶ G-Series Day Cabs
- ▶ R/T-Series Sleepers
Interchange Codes
- ▶ 1366761/2303350
- ▶ 2572352/560097
- ▶ 4-Series CP/CG/CT
Maintains original door panel clearance specifications across all compatible models.
Mechanical Advantages
- ▶ Steel-Reinforced Housing
- ▶ Dual-Bearing Load Support
- ▶ Anti-Corrosion Coatings
Electrical Compliance
- ▶ ISO 7637-2 Certified
- ▶ IP67 Moisture Protection
- ▶ SAE J1455 Standards
Compatible with OE: 1442292, 1366761, 2303350, 2572352, 560097 for SCANIA P/G/R/T-Series & 4-Series trucks (1992-2008 production years)
const validateContent = () => { const requiredOE = ['1442292', '1366761', '2303350', '2572352', '560097']; const contentNodes = document.body.textContent; if(requiredOE.some(oe => !contentNodes.includes(oe))) { console.error('Missing OE references'); return false; } const wordCount = { description: document.querySelector('h2:contains("Specifications") + p').textContent.split(/\s+/).length, compatibility: document.querySelector('h2:contains("Matrix")').nextElementSibling.textContent.split(/\s+/).length, technical: Array.from(document.querySelectorAll('h3')).reduce((acc, h3) => acc + h3.nextElementSibling.textContent.split(/\s+/).length, 0) }; if(wordCount.description < 200 || wordCount.compatibility < 100 || wordCount.technical < 100) { console.error(`Content thresholds not met: Desc-${wordCount.description} Comp-${wordCount.compatibility} Tech-${wordCount.technical}`); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);